'easy_install' is not recognized as an in internal or external command, operable program or batch file

半世苍凉 提交于 2019-12-05 01:28:09

You need to:

  1. Install easy_install: http://pypi.python.org/pypi/setuptools

  2. Add C:\Python27\Scripts to your PATH

I had the same issue with Python 3.4. Fixed it with the steps below:

cd C:\Python34\Scripts .\easy_install pip

(or what you need to install) with the .\ you sort of grant admin permissions to the command

I think that you should set the 'PATH' variable in order to execute it

Larry Lustig

Looks like easy-install is not itself installed on your system.

See this previous question for instructions on installing.

Basics official python packages need to be installed

You can install packages via the command line by entering:

python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!