pip 是一个现代的,通用的 Python 包管理工具。提供了对 Python 包的查找、下载、安装、卸载的功能;
- 常用的国内源
阿里云 http://mirrors.aliyun.com/pypi/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
- 临时修改(本次安装有效)
# 安装包时,使用-i参数,指定pip源
pip install numpy -i http://pypi.douban.com/simple/
# 此参数“--trusted-host”表示信任,如果上一个提示不受信任,就使用这个
pip install numpy -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
- 永久有效
修改~/.pip/pip.conf(没有就创建一个), 内容如下:
创建~/.pip/pip.conf命令
mkdir ~/.pip && touch ~/.pip/pip.conf
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple/
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
tips:trusted-host此参数是为了避免麻烦,否则使用的时候可能会提示不受信任
在User目录中创建一个pip目录,如:C:\\Users\\xxx\\pip
在pip目录下新建文件pip.txt并改后缀为ini, 即:pip.ini
pip.ini文件内容如下
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple/
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
tips:trusted-host此参数是为了避免麻烦,否则使用的时候可能会提示不受信任
Reference
来源:https://www.cnblogs.com/cure/p/14930238.html
图文来源于网络,如有侵权请联系删除。