欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

pip和conda 添加国内清华镜像

程序员文章站 2022-06-01 19:57:01
...

pip和conda 添加国内清华镜像

python模块安装,使用国内源可以提高下载速度。

1. pip源更改:

pip源有好几个,我一直用的清华的pip源,它5分钟同步一次。
临时使用:
pip 后加参数 -i https://pypi.tuna.tsinghua.edu.cn/simple
例1:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas

例2:我想安装tensorflow-gpu1.4.1,执行:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow-gpu==1.4.1

我们可以点进去那个清华链接,这个链接和下面那个conda的清华链接不太一样,注意,有非常多的镜像

永久使用:
Linux下:
修改 ~/.pip/pip.conf (没有就创建一个), 修改 index-url至tuna,内容如下:

    [global]
    index-url = https://pypi.tuna.tsinghua.edu.cn/simple

windows下:
直接在user目录中创建一个pip目录,如:C:\Users\xxxx\pip,新建文件pip.ini,内容如下

 [global]
 index-url = https://pypi.tuna.tsinghua.edu.cn/simple

2. conda源更改:

conda源国内只有清华有,
修改源只需输入如下两行命令:

conda config --add channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'
conda config --set show_channel_urls yes

如果上面的方法有问题就直接找到.condarc 文件修改文件内容。

用everything 搜索 “.condarc”不要忘记前面的点 打开,在- default 前面加上镜像地址,【https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/】不用加引号
然后你的.condarc 文件应该是这样的内容

channels: 
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ 
- defaults

show_channel_urls: yes
  • defaults

    show_channel_urls: yes