Windows 下 Python easy_install 的安装
下载安装python安装工具
下载地址:http://pypi.python.org/pypi/setuptools 可以找到正确的版本进行下载。win7 32位可以下载setuptools-0.6c11.win32-py2.7.exe 。
注意:win7 64位必须使用ez_setup.py进行安装。方法是下载ez_setup.py后,在cmd下执行 python ez_setup.py,即可自动安装setuptools。目前没有直接的exe安装版本。(注:这是对setuptools-0.6c11版本来说,新版本(如:setuptools 0.7.4)可能又会有所变化,所以,具体安装步骤看官方文档了,可能32,64都需要这么安装)
////////////////////////////////////////////////////////////////////
新版本(setuptools 0.7.4)安装成功一例:
(1)首先cmd进入dos,进入下载的ez_setup.py的所在文件夹(如:D:\en_setup.py)
C:\Users\Administrator>D:
(2)安装Python easy_install (成功后在D:\Python33\Scripts下生成easy_install.exe文件)
D:\>D:\Python33\python.exe ez_setup.py
(3)验证:如安装Web框架Bottle(bottle.py也在D:\Python33\Scripts下)
D:\Python33\Scripts>easy_install bottle
Searching for bottle
Best match: bottle 0.11.6
Adding bottle 0.11.6 to easy-install.pth file
出现如上表明bottle安装成功且为最新版。还可以安装其他第三方库
(4)配置系统环境变量(为了方便)
Win7下:计算机->属性->-高级系统设置->高级->环境变量->在系统环境下加载easy_install.exe路径:如:
///////////////////////////////////////////////////////////////////////////////////
安装了easy_install 之后安装python的库就很简单了,以后需要安装python的库的话则直接在命令行使用
easy_install + libname
比如:
C:\Users\zhuyupeng>easy_install numpy
Searching for numpy
...
Processing dependencies for numpy
Finished processing dependencies for numpy
这是下载下来再安装的:
C:\Users\zhuyupeng>easy_install "D:\Program Files\Python2.7\matplotlib-1.1.0.win
32-py2.7.exe"
...
Processing dependencies for matplotlib==1.1.0
Finished processing dependencies for matplotlib==1.1.0