Conda 3 换源 (备份)
阿里云 :http://mirrors.aliyun.com/pypi/simple/
中国科技大学: https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) :http://pypi.douban.com/simple/
清华大学 :https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 :http://pypi.mirrors.ustc.edu.cn/simple/
https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
更换系统安装源具体做法:
在c:\user(或者用户)\电脑的用户名\,目录下创建一个命名为"pip"的文件夹(如:C:\Users\Administrator\pip),在该文件夹下创建一个命名为"pip.ini"的文件,在该文件中写入以下内容:
[global]
index-url=https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=pypi.tuna.tsinghua.edu.cn
disable-pip-version-check = true
timeout = 6000
若是想在安装package的时候再设置源,可以以这种方式来进行:
pip install package_name -i https://pypi.tuna.tsinghua.edu.cn/simple
在Anaconda prompt中操作:
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 --show channels
显示所以手动设置的源
conda config --remove-key channels
删除所有手动设置的源