"easy_install" is not recognized as an internal or external command, operating program or batch file

I just downloaded and installed the latest version of Python on my computer running Windows 7.

Python 2.7.3 

Now I want to install the Twitter library I found online:

However, when I try to run easy_install tweepy , I get this error message:

'easy_install' is not recognized as an internal or external command, operating program, or batch file.

Python is already placed in my path, since I can invoke the Python program on the command line.




Here is a screenshot of my folder where Python is installed.

enter image description here

And inside the Tools folder:

enter image description here

And inside the scripts folder:

enter image description here

+10
python windows-7 easy-install
Apr 18 '12 at 18:40
source share
5 answers

You need:

+10
Apr 18 '12 at 18:44
source share

I had the same issue with Python 3.4. The following steps are fixed:

cd C: \ Python34 \ Scripts. \ easy_install pip

(or what you need to install) c. \ you select the administrator permissions to access the command

+6
May 26 '14 at 9:07
source share

I think you should set the "PATH" variable to execute it

+3
Apr 18 '12 at 18:45
source share

It seems that a simple installation itself is not installed on your system.

See this previous question for installation instructions.

+1
Apr 18 '12 at 18:44
source share

Major official Python packages must be installed

You can install packages through the command line by entering:

 python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose 
0
Sep 03 '19 at 6:17
source share



All Articles