Python包管理器概述
Python开发期间,经常涉及到需要安装各种Python库,用于实现不同的功能。
Python中用包管理器来管理Python库。
目前现存有很多种Python的包管理器:
- Python包管理器
easy_install
easy_install
基于旧的包格式:egg
- 现在很少用了
- 只有当你只有
egg
的格式时,才需要用到easy_install
- 只有当你只有
setuptools
setuptools
包含了(内部用到了)easy_install
- 现在用的很少
- pip
- 历史
- 2008年发布
- 内部实现
- 基于新的包的格式:
wheel
- 基于新的包的格式:
pip
往往是Python自带就有的,无需额外安装。且功能强大,很好用。pip
是目前Python中最常见的包管理器
- 历史