0

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...

Asuto Seven
  • 11
  • 1
  • 1
  • 3

3 Answers3

2

Use:

python -m pip (command) (option)

Do not use ()

Mohammad Usman
  • 34,173
  • 19
  • 88
  • 85
1

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"

be_good_do_good
  • 3,883
  • 3
  • 27
  • 39
0

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

heyyou482
  • 71
  • 1
  • 4