ClaudioA
ClaudioA

Reputation: 317

Python pip installation easy_install not recognized

i installed setuptools from here:

pypi.python.org/pypi/setuptools 

i go to my command line and enter easy_install but it says easy_install is not recognized,

anyone knows what is happening here? i got no error message when installing setuptools.

I am using windows,

any help would be appreciated

Upvotes: 2

Views: 3276

Answers (1)

Navid777
Navid777

Reputation: 3681

You have to Add your scripts folder in your python installation folder to your PATH variable, for example if your python is installed in C:\Python27 you should do this :

  1. Go to Control Panel
  2. Go to Edit system environment variables
  3. In the Advanced tab click on Environment Variables
  4. find PATH variable and add ;C:\Python27\scripts to the end of it

Upvotes: 2

Related Questions