Python包管理
作者:互联网
PyPA
The Python Packaging Authority (PyPA) is a working group that maintains a core set of software projects used in Python packaging.
PyPA推荐使用pip进行Python包管理。
命令
- 版本
pip -V
- 库
- 查看已安装的第三方库
pip list
- 查看有新版本的已安装的第三方库
pip list --outdated
- 详细信息
pip show selenium
- 安装最新版本
pip install pip
- 安装指定版本
pip install selenium=3.0.1
- 卸载
pip uninstall selenium
源
https://pypi.tuna.tsinghua.edu.cn/simple
清华大学的pip源,是官网pypi的镜像,每隔5分钟同步一次。
标签:PyPA,管理,Python,selenium,版本,pip,安装 来源: https://blog.csdn.net/black_or_red/article/details/120164004