Python:install Packages With Pip; Issue
Solution 1:
Are you sure you have pip installed?
Follow these instructions to download and install pip.
Download get-pip.py to a folder on your computer. Open a command prompt window and navigate to the folder containing get-pip.py. Then run python get-pip.py
. This will install pip.
Solution 2:
The link below explains the installation of Python and pip in Windows:
https://github.com/BurntSushi/nfldb/wiki/Python-&-pip-Windows-installation
Basically, download and run the following command:
python get-pip.py
Solution 3:
When calling echo %PATH% code shoud look like:
blah blah long list of stuff;C:\Program Files
(x86)\Calibre2\;C:\Users***\AppData\Local\Programs\Python\Python36-
32;C:\Users***\AppData\Local\Programs\Python\Python36-32\Scripts
To correct this use GUI.
All credit to:https://www.reddit.com/r/learnpython/comments/6evsaz/issue_with_pip/
Post a Comment for "Python:install Packages With Pip; Issue"