Sunday, April 02, 2017

How to enable PIP install

pip install work perfectly

When you need to instal some module in python. To run some python program that requires a special module like pygame, matplotlib,etc. You should download and install it, to install a module you need pip install. But in a computer that dont install it before, it will be result as an error.

pip is not recognized

So this is basically required to using pip. You should enable it on command prompt, How?

  1. Open Windows Explorer
  2. Right click on This PC
  3. Properties
  4. Advanced System Setting
  5. Click Enviroment Variables
  6. find Path
  7. and Edit
  8. click on New
  9. Add thats 2 variable 
  • C:\python27
  • C:\python27\scripts

And now, just try to run pip install in CMD, make sure you run as administrator first.
Enjoy It!!

0 comments:

Post a Comment