Skip to content

Commit

Permalink
Added additional library install syntax options for pip
Browse files Browse the repository at this point in the history
  • Loading branch information
ES-Alexander committed Jan 21, 2019
1 parent a506174 commit d163bbb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Lessons/L9/L9_0_notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,14 @@
(open-source computer vision), and Pillow (python image library for python
3). If you have pip (python package installer), open a terminal/command
prompt and run the command:
pip install numpy opencv-python Pillow
If your computer has Python 2 installed as well, or if the above command
doesn't work, try using:
pip3 install numpy opencv-python Pillow
or
python3 -m pip install numpy opencv-python Pillow
or
python -m pip install numpy opencv-python Pillow
If you don't have pip, look online for how to install it and get it up and
running. Windows users should have pip installed by default with their
python installation, but you need to make sure that python3 (or just
Expand Down

0 comments on commit d163bbb

Please sign in to comment.