python的packages管理
一、概念介绍 Python is known for it's “batteries included” philosophy and has a rich standard library。However, being a popular language, the number of third party packages is much larger than the number of standard library packages. So it eventually becomes necessary to discover how packages are used, found and created in Python. 目前python提供的包管理工具有多个,其关系如下: 具体可以参见: http://guide.python-distribute.org/introduction.html 可以看出,Distribute代替了Setuptools, 但将来会被distutils2取代,并作为标准库的一部分。 关于packages的管理,则由pip进行 有关packages的发布,查找的网站是: https://pypi.python.org/pypi Distribute是对标准库disutils模块的增强,disutils主要是用来更加容易的打包和分发包