1、前言
很多深度学习的项目免不了安装库文件、配置环境等等,如果利用官方提供的连接,网速很慢,而且很容易download掉。
所以配置好了虚拟环境,将pip换源属实重要
常见的国内镜像源有清华、中科大、阿里等等...
这里建议用中科大的镜像源,网速快且稳定
https://pypi.mirrors.ustc.edu.cn/simple
2、pip 更换镜像源
激活虚拟环境,查看当前环境使用的镜像源:
pip config list
删除镜像源:
pip config unset global.index-url
添加镜像源:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
出现writing to ...就是成功了
3、常见镜像源链接
清华:
https://pypi.tuna.tsinghua.edu.cn/simple
中科大:
https://pypi.mirrors.ustc.edu.cn/simple
阿里:
https://mirrors.aliyun.com/pypi/simple/
豆瓣:
http://pypi.douban.com/simple/
百度:
https://mirror.baidu.com/pypi/simple
4、conda 更换镜像源
添加:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ conda config --set show_channel_urls yes
删除:
conda config --remove-key channels
查看:
conda config --show channels 或者 conda config --show-sources
5、链接分享
关于环境配置可以参考本栏目:
深度学习环境配置篇_听风吹等浪起的博客-CSDN博客