16

I tried to install PySide but I got error from the power shell as follows:

pip : The term 'pip' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1
+ pip install -U PySide
+ ~~~
+ CategoryInfo : ObjectNotFound: (pip:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

OneCricketeer
  • 126,858
  • 14
  • 92
  • 185
Mohd Rais
  • 171
  • 1
  • 1
  • 4

10 Answers10

27

This error shows up on windows when one tries to use pip in the command prompt. To solve this error on windows, you must declare path variable by following these steps:

Step 1 - Right click on My Computer or This PC
Step 2 - Click on Properties
Step 3 - Click on Advanced System Settings

You will find a section called system variables.
Click on Path from the list of variable and values that shows up there.
After clicking on path click edit. You will find a New button in the pop up.
Click that and paste the location of the python35 or python36 folder (The location you specified while installing python) followed by “\Scripts” there.
For me its “C:\Users\a610580\AppData\Local\Programs\Python\Python35-32”
so I type “C:\Users\a610580\AppData\Local\Programs\Python\Python35-32\Scripts”
Click Ok to close all windows and restart your command prompt.
I repeat - restart your command prompt.

Everything should now be working fine! Make sure you don’t disturb anything else in the path variable and follow the aforementioned steps exactly. Alternatively you can watch this video - https://www.youtube.com/watch?v=Jw_MuM2BOuI Happy coding!

Haris Ali Khan
  • 511
  • 5
  • 9
  • 1
    Restarting the command prompt is important, even opening a new tab (as in the new Microsoft terminal) will not work – STG Jul 20 '20 at 16:28
12

That's because the path where pip.exe is, is not in your system PATH variable so cmd can't find pip a simple fix will be to change to the directory where pip.exe and run if from there like this

cd C:\Python27\Scripts

But a better solution is to add it to your PATH variable. Open Command prompt with admin rights and run

setx path "%PATH%;C:\Python27\Scripts;"

that adds python to your PATH, you can check the lists of paths in your path variable by running

echo %path%

You should see your newly added path there. Don't forget to restart command prompt after you're done.

Now you should be able to run pip.

danidee
  • 8,227
  • 2
  • 25
  • 52
5

Basiclly, You need to add the path of your pip installation to your PATH system variable.

First Option

Download pip by modifying the Pyton Installation.

Step 1 - Open Apps & Features

Step 2 - Find Python and click on it

Step 3 - Press Modify

Step 4 - Select pip

Step 5 - Select Add Python to environment variables and install everything

This will install pip and add both, Python and pip to your envirnoment variables.

Second Option

By default, pip is installed in C:\Python34\Scripts\pip

To add the path of your pip installation to your PATH variable follow theese steps.

Step 1 - Search for environment variables and open Edit the system environment variables

Step 2 - Open Environment Variables...

Step 3 - Find your PATH variable and select Edit

Step 4 - Paste the location to your pip installation (By default, it's C:\Python34\Scripts\pip)

Zimbakov Tech
  • 81
  • 1
  • 8
3

I discovered that using powershell PIP wasn't recognized, but in the CMD it is.

Make sure you're actually using the cmd and not powershell to run it.

Insadrian
  • 56
  • 3
2

Just reinstall python and click add to PATH in the installer!

Reek
  • 21
  • 1
1

Try this. It worked for me installing another library:

  1. Open the CMD as Administrator by one of the following methods:

Method 1:

  • Open Start menu and search for "CMD"
  • Right click and choose "Run as Administrator

Method 2:

  • Press from the keyboard: "Windows Key + R"
  • Type "cmd" and Press "Ctrl+Shift+Enter"
  1. Type “cd\” and press "Enter"
  2. Locate your Python application path, which is the folder where you originally installed Python. In my case, the Python application path is:

    C:\Users\Admin\AppData\Local\Programs\Python\Python38

  3. Then type "cd" followed by this path and press enter:

 cd C:\Users\Admin\AppData\Local\Programs\Python\Python38
  1. You should get the following result
 C:\Users\Admin\AppData\Local\Programs\Python\Python38>
  1. Write your python command now and press enter, for example:
 C:\Users\Admin\AppData\Local\Programs\Python\Python38>python -m pip install -U PySide
0

simply go to python root folder like \python38-32 and then go into \Scripts subfolder where contains pip.exe. You can install flawlessly from there. However, to avoid another time recursively go through many files, you should reset the PATH variable as the above answer mentioned.

logbasex
  • 584
  • 1
  • 5
  • 13
0

In case the first solution didn't work, give attention to your path, there is a slight chance instead of writing :

C:\Users\\AppData\Local\Programs\Python\Python38-32

you wrote

C:/Users/a610580/AppData/Local/Programs/Python/Python38-32

if you couldn't execute pip install selenium on visual studio write it on cmd first the close and open your visual studio.

Yatin
  • 2,348
  • 6
  • 20
  • 38
0

This work for me, Download pip by modifying the Python Installation.

Step 1 - Open Apps & Features
Step 2 - Find Python and click on it
Step 3 - Press Modify
Step 4 - Select pip
Step 5 - Select Add Python to environment variables and install everything

This will install pip and add both, Python and pip to your environment variables.

sutharp777
  • 735
  • 1
  • 6
  • 22
Gaurav
  • 11
  • 1
0

According the following website:

https://pip.pypa.io/en/stable/installing/

you just need to type py -m pip

in your Python terminal. Then you will see a list of things you can do.

enter image description here

MKR
  • 743
  • 1
  • 8
  • 19