pip更改为国内源
Posted 海里的鱼2022
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pip更改为国内源相关的知识,希望对你有一定的参考价值。
1. 查看现有默认pip安装源
pip config list
2. 按次修改
添加指定源
pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
3. 固定指定源
创建目录
sudo mkdir ~/.pip
编辑配置文件
sudo nano ~/.pip/pip.conf
添加源,保存退出
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host = https://pypi.tuna.tsinghua.edu.cn
4. 其他可以指定的源
其他国内镜像源
- 中国科学技术大学 : https://pypi.mirrors.ustc.edu.cn/simple
- 豆瓣:http://pypi.douban.com/simple/
- 阿里云:http://mirrors.aliyun.com/pypi/simple/
以上是关于pip更改为国内源的主要内容,如果未能解决你的问题,请参考以下文章