码迷,mamicode.com
首页 > 编程语言 > 详细

Python包管理工具Distribute的安装

时间:2014-11-17 19:46:14      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:python distribute

Python包管理工具Distribute的安装


Python的包管理工具常见的有easy_install, setuptools, 还有pip, distribute,那麽这几个工具有什么关系呢,看一下下面这个图就明白了:

bubuko.com,布布扣bubuko.com,布布扣bubuko.com,布布扣

可以看到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来安装是最简单和受欢迎的方式。

[root@server]#  wget https://pypi.python.org/packages/source/d/distribute/distribute-0.7.3.zip --no-check-certificate

[root@server ]#unzip distribute-0.7.3.zip

[root@server ]#cd distribute-0.7.3

[root@server ]#python2.6 setup.py install


或者

[root@server]#wget http://pypi.python.org/packages/source/d/distribute/distribute-0.6.35.tar.gz

[root@server ]#tar xf distribute-0.6.35.tar.gz

[root@server ]#cd distribute-0.6.35

[root@server ]#python2.6 setup.py install

Python包管理工具Distribute的安装

标签:python distribute

原文地址:http://bingwzi.blog.51cto.com/4058199/1577466

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!