pip 常用命令
安装 pip
sudo easy_install pip # linux 系统化
python easy_install pip # Windows 系统
conda install pip # Anaconda
升级pip
pip install -U pip
pip 基本的命令解释:
列出已安装的包
pip freeze
pip list
导出 requirements.txt
pip freeze > path/requirements.txt # path 是 requirements.txt 文件所在目录
安装包
在线安装
pip install package_name 或 pip install -r requirements.txt
使用 ==, >=, <= ,> ,< 中任意操作符来指定包的版本,不写则安装最新版
pip install requests==2.7 #指定版本号2.7
pip install requests>2.0,<3.0 #(2.0,3.0)之间的最新版本
用 requirement.txt 安装多个包,requirements.txt 内容的格式为:
jupyter # 未指定版本号,安装最新的
matplotlib==3.1.1 # 安装指定版本号的包
requests>2.0,<3.0 #(2.0,3.0)之间的最新版本
安装本地安装包
pip install <目录>/<文件名> 或 pip install --use-wheel --no-index --find-links=wheelhouse/ <包名>
注意: <包名> 前有空格
可简写为
pip install --no-index -f=<目录>/ <包名>
卸载包
pip uninstall <包名> # 卸载单个包
pip uninstall -r requirements.txt # 批量卸载
升级包
pip install -U <包名>
pip install <包名> --upgrade
显示包所在的目录
pip show -f <包名>
搜索包
pip search <搜索关键字>
查询可升级的包
pip list -o
下载包但不安装
pip install <包名> -d <目录> # 下载单个包
pip install -d <目录> -r requirements.txt # 批量下载包
更换国内pypi镜像
国内pypi镜像
- 阿里:
https://mirrors.aliyun.com/pypi/simple
- 中国科学技术大学:http://pypi.mirrors.ustc.edu.cn/simple/
指定单次安装源
pip install <包名> -i https://mirrors.aliyun.com/pypi/simple
pip3 install jupyter -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
pip3 install yapf -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
pip install beautifulsoup4 --trusted-host pypi.douban.com -i http://pypi.douban.com/simple
非学无以广才,非志无以成学。