Asuto Seven
Asuto Seven

Reputation: 11

Python pip installation not working how to do?

I keep trying to install Pip using get-pip.py and only get the wheel file in the scripts folder. Try running "pip" in the command prompt and it just comes out with an error. Running windows 8 incase you need. edit error is 'pip' is not recognized as an internal or external command...

Upvotes: 0

Views: 17304

Answers (3)

Adam McAllister
Adam McAllister

Reputation: 41

Use:

python -m pip (command) (option)

Do not use ()

Upvotes: 2

be_good_do_good
be_good_do_good

Reputation: 4439

If you are using latest version of Python.

In computer properties, Go to Advanced System Settings -> Advanced tab -> Environmental Variables

In System variables section, there is variable called PATH. Append c:\Python27\Scripts (Note append, not replace)

Then open a new command prompt, try "pip"

Upvotes: 1

heyyou482
heyyou482

Reputation: 111

Try navigating to ~/Python[version]/Scripts in cmd, then use pip[version] [command] [module] (ie. pip3 install themodulename or pip2 install themodulename)

Upvotes: 0

Related Questions