I have installed python 3.5 on my Windows 7 machine. When I installed it, I marked the check box to install pip
. After the installation, I wanted to check wheth
Working on windows and above version than 3.0
First upgrade pip to pip3 by following command:
pip3 install --upgrade setuptools pip
Then install maximum package by following command:
pip3 install <package_name>
I never wrote all package because some package not support to pip or pip3 command.
run it at the cmd window, not inside the python window. it took me forever to realize my mistake.
For those with several python versions of python 3 installed in windows: I solved this issue by executing the pip install command directly from my python35 Scripts folder in cmd...for some reason pip3 pointed to python 34 even though python 35 was set first in environmental variables.
I was having the same problem on Windows 10, This is how I fix it:
C:\Users\YOUR USER NAME\AppData\Local\Programs\Python\Python38-32\Scripts
for Variable Value. Don't forget to change (YOUR USER NAME) in the path with your user, And to change your Python version or just go to this path to check it C:\Users\YOUR USER NAME\AppData\Local\Programs\Python
C:\Users\YOUR USER NAME\AppData\Local\Programs\Python\Python38-32\
for Variable Value. Don't forget to change (YOUR USER NAME) in the path with your user, And to change your Python version or just go to this path to check it C:\Users\YOUR USER NAME\AppData\Local\Programs\Python
%PYTHON3_SCRIPTS%
Then click OKNow, everything is set. Restart your Terminal and pip
should be working now.