Python包管理工具Distribute的安装
Python的包管理工具常见的有easy_install, setuptools, 还有pip, distribute,那麽这几个工具有什么关系呢,看一下下面这个图就明白了:
可以看到distribute是setuptools的替代方案,pip是easy_install的替代方案。
Distribute提供一个安装python模块的框架。你系统的每一个python解释器都需要它自己的Distribute。你可以自己找到最新版本的Distribute,在这里https://pypi.python.org/pypi/distribute。
Distribute是对标准库disutils模块的增强,我们知道disutils主要是用来更加容易的打包和分发包,特别是对其他的包有依赖的包。
Distribute被创建是因为Setuptools包不再维护了。
可以通过distribute_setup.py 脚本来安装Distribute,也可以通过easy_install, pip,源文件来安装,不过使用distribute_setup.py来安装是最简单和受欢迎的方式。
[[email protected]]# wget https://pypi.python.org/packages/source/d/distribute/distribute-0.7.3.zip --no-check-certificate
[[email protected] ]#unzip distribute-0.7.3.zip
[[email protected] ]#cd distribute-0.7.3
[[email protected] ]#python2.6 setup.py install
或者
[[email protected]]#wget http://pypi.python.org/packages/source/d/distribute/distribute-0.6.35.tar.gz
[[email protected] ]#tar xf distribute-0.6.35.tar.gz
[[email protected] ]#cd distribute-0.6.35
[[email protected] ]#python2.6 setup.py install