python官方的第三方库的仓库:​​https://pypi.org/​

 

pip 是python的包管理工具

pip --version #查看当前版本

 安装

pip install -U pip #升级pip
pip install 包名==1.0.4 # 指定版本
pip install 包名>=1.0.4' # 最小版本

 卸载

pip uninstall 包名

搜索

pip search 包名

包信息

pip show -f 包名

已安装列表

pip list