Python-pip的使用
pip -h # 查看所有命令
常用命令
Commands | 解释 | 例子 |
---|---|---|
install | 安装第三方包 | pip install <包名> 或 pip install -r requirements.txt 或 pip install <包的本地路径> |
uninstall | 卸载第三方包 | pip uninstall <包名> |
freeze | 输出已安装软件包 | pip freeze > requirements.txt |
list | 列出已安装的包 | pip list 或 pip list -o[查询可升级的包] |
show | 显示有关已安装包的信息 | pip show <包名> 或 pip show -f <包名>[显示包所在的目录] |
search | 搜索PyPI中的包 | pip search <关键字> |
requirements.txt 的格式为:
包名==版本号
若不写版本号则默认安装最新版
例如:
absl-py==0.9.0 albumentations
更换国内pypi镜像
- 阿里:
https://mirrors.aliyun.com/pypi/simple
- 豆瓣:
http://pypi.douban.com/simple
- 中国科学技术大学:
http://pypi.mirrors.ustc.edu.cn/simple/
- 清华大学:
https://pypi.tuna.tsinghua.edu.cn/simple
- 网易:
https://mirrors.163.com/pypi/simple/
- 华为:
http://mirrors.myhuaweicloud.com/pypi/web/simple
- 腾讯:
https://mirrors.cloud.tencent.com/pypi/simple
临时使用源来安装
命令:
pip install <包名> -i <源链接>
例如: 使用阿里源来安装
pip install <包名> -i https://mirrors.aliyun.com/pypi/simple
永久使用
配置文件在:
- linux的文件在
~/.pip/pip.conf
- windows在
%HOMEPATH%\pip\pip.ini
- 打开资源管理器 输入 %Appdata%, 新建文件夹pip,里面新建文件pip.ini
修改内容为, 以阿里源为例:
[global]
index-url=http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com
本文来自博客园,作者:漫漫长夜何时休,转载请注明原文链接:https://www.cnblogs.com/ag-chen/articles/13462689.html