pip和conda 切换国内源

ubuntu

pip 换源

mkdir ~/.pip
cd .pip
vim pip.conf
[global]
timeout = 6000
index-url = https://pypi.doubanio.com/simple
trusted-host = pypi.doubanio.com

windows

pip 换源

pip config list 查看源
pip和conda 切换国内源_第1张图片
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn/simple

conda 换源

方法一:修改文件
Windows 用户无法直接创建名为 .condarc 的文件,可先执行 conda config --set show_channel_urls yes 生成该文件之后再修改。
.condarc文件在C盘用户目录下(如果没有显示,可能需要打开显示隐藏文件)

方法二:通过指令
1.显示镜像源
conda config --show channels
2.查看Anaconda配置信息
conda info
3.删除所有的镜像源,恢复到默认
conda config --remove-key channels
4.设置搜索时显示通道地址
conda config --set show_channels_urls yes
5.删除指定的镜像源
conda config --remove channels [urls]
6.中科大源
链接
清华源
链接
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
阿里源
链接

你可能感兴趣的:(python)