Reputation: 317
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
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 :
Edit system environment variables
Advanced
tab click on Environment Variables
PATH
variable and add ;C:\Python27\scripts
to the end of itUpvotes: 2