-
distutils
The
distutilspackages provides support for building and installing additional modules into a Python installations.Most Python users will not want to use this module directly, but instead use the cross-version tools maintained by the Python Packaging Authority. In particular,
setuptoolsis an enhanced alternative todistutils. -
setuptools
Setuptoolsis a collection of enhancements to the Pythondistutilsthat allow developers to more easily build and distribute Python packages, especially ones that have dependencies on other packages.Packages built and distributed using
setuptoolslook to the user like ordinary Python packages based on thedistutils. -
pip
pipis the package installer for Python.pipis a higher-level interface on top ofsetuptoolsorDistribute. -
distribute
distribute 0.7.3which released Jul 6, 2013, is the latest version, and out of use.distributewas a fork of the oldersetuptools. -
Overview
distutils最初级,setuptools是distutils的加强版,distribute是setuptools的一个分支,已弃用.pip是上述各种功能的更高级api. -
References
理解setuptools || distutils||pip||distribute in Python
最新推荐文章于 2024-07-12 23:33:53 发布
本文介绍了Python中的包管理工具,包括distutils、setuptools、distribute及pip的功能和相互之间的关系。distutils是最基础的模块,setuptools是其增强版,distribute为setuptools的一个分支现已不再使用,而pip则提供了更高层次的接口来安装和管理Python软件包。
5161

被折叠的 条评论
为什么被折叠?



