换源:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/
其他国内第三方库的下载源地址:
阿里云: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/
以 opencv 为例,进行测试:
pip install opencv-python
完成以上的第三方库安装换源后,我们还需要对conda内部自带的镜像源进行一次换源(默认自带国外的源):
1.首先打开anaconda里的cmd.exe,输入conda config --show channels命令查看是否添加过镜像源(这边之前卸载的时候有残留),然后我们再次输入conda config --remove-key channels清空之前所有设置过的国内镜像源,然后在输入conda config --show channels进行查看可以看到conda内部的镜像地址已经恢复到了初始化状态
2.输入conda config --add channels 后边加上要换源的网址进行镜像地址的添加。
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/fastai/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --show channels
3.输入conda update conda来进行conda的更新,顺带可以验证起先的国内镜像源添加是否成功。