参考:pip国内镜像(清华大学镜像)_探索者v的博客-CSDN博客_清华源
.condarc(conda 配置文件)、换国内源_五道口纳什的博客-CSDN博客_condarc
pip
临时使用
可以在使用pip的时候加参数-i Simple Index
例如:pip install -i Simple Index numpy,这样就会从清华这边的镜像去安装numpy库。
永久修改
- Linux下,修改 ~/.pip/pip.conf (没有就创建一个), 修改 index-url至tuna,内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
- windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
conda
将下面两行命令分别输入执行之后就将conda的源修改成功了
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes