python中的pip操作
1. pip更换国内镜像源
由于 python 自带的源下载速度非常慢,特别是安装一些库的时候,甚至有时会失败。
因此,建议将下载源替换成国内的,下载速度会快很多。总共有两种方法
- 代码替换 (推荐使用这一种)
- 手动替换
1.1 代码替换
1.1.1 阿里源(推荐这个)
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
pip config set install.trusted-host mirrors.aliyun.com
1.1.2 清华大学的
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/
pip config set install.trusted-host pypi.tuna.tsinghua.edu.cn
1.2 手动替换
1.2.1 Windows替换
首先在 windows
当前用户home
的目录下,创建一个pip
文件夹,然后创建一个pip.ini
文件,修改文件内容为如下;
路径例如:C:\Users\Administrator\AppData\Roaming\pip\pip.ini
,文件内容如下:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple
[install]
trusted-host = mirrors.aliyun.com
1.2.2 Mac替换
# 会在目录下自动生成,不同系统,目录可能不同,所以使用命令行最靠谱
~/.config/pip/pip.conf
[global]
index-url = https://mirrors.aliyun.com/pypi/simple
[install]
trusted-host = mirrors.aliyun.com
1.3 国内源列表
国内源列表(推荐用阿里云的)
阿里云: http://mirrors.aliyun.com/pypi/simple/
中国科技大学: https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣: http://pypi.douban.com/simple/
清华大学: https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学: http://pypi.mirrors.ustc.edu.cn/simple/
2. pip常用操作
2.1 升级pip(或指定版本)
python -m pip install --upgrade pip
python -m pip install --upgrade pip==20.2.1
2.2 pip设置查看
# 查看全部
pip config list
# 查看具体某个
pip config get distutils.index-url
pip config get --global index-url
pip config get --user index-url
2.3 查看下载源
pip download -r requirements.txt
2.4 下载项目所需依赖
pip install -r requirements.txt
2.5 查看包
# 查看所有的包
pip list
# 查看指定包
pip show <package-name>
标签:mirrors,python,com,pypi,simple,pip,操作,config
From: https://www.cnblogs.com/zreo2home/p/18603037