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
I had the same problem with Version 3.5.2.
Have you tried py.exe -m install package-name
? This worked for me.
I had the issue, and answered this same question sometimes ago. Do open a cmd if in windows OS or linux OS with admistrative privilege. Then python -m pip install --upgrade pip
then
python -m pip install <>
As soon as you open a command prompt, use:
python -m pip install --upgrade pip
then
python -m pip install <<package-name>>
If you are working in Pycharm, an easy way is go to file>setting>project interpreter. Click on the + icon you will find on right side probably and then search and install required library.
Add the Script folder of python to your environment path
or you can do this from command line:
python -m pip install package-name