I am getting the following error message when installing some libraries on PyCharm:
Command "python setup.py egg_info" failed with error code 1 in C:\Users\user.name\AppData\Local\Temp\pycharm-packaging\hachoir-metadata\ You are using pip version 8.1.1, however version 9.0.1 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command.
Path to pip3.5.exe:
C:\Users\user.name>AppData\Local\Programs\Python\Python35-32\Scripts\pip3.5.exe
I have run the following from cmd:
C:\Users\user.name>AppData\Local\Programs\Python\Python35-32\Scripts\pip3.5.exe install upgrade pip
Which gives me the following:
Could not find a version that satisfies the requirement upgrade (from versions: ) No matching distribution found for upgrade You are using pip version 8.1.1, however version 9.0.1 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command.
I then tried both:
C:\Users\user.name>AppData\Local\Programs\Python\Python35-32\Scripts\pip.exe pip install upgrade pip
and:
C:\Users\user.name>AppData\Local\Programs\Python\Python35-32\Scripts\pip.exe python -m pip install --upgrade pip
From pip.exe (rather than pip3.5exe as they didn't work on that) which resulted in:
ERROR: unknown command
I am pretty sure that I am doing something wrong here, but not quite sure what?
Tried the following:
C:\Users\user.name>\AppData\Local\Programs-m pip install --upgrade pip
C:\Users\user.name>\AppData\Local\Programs\Python\Python35-32\Scripts\pip.exe -m pip install --upgrade pip
C:\Users\user.name>\AppData\Local\Programs\Python -m pip install --upgrade pip