python pip anaconda conda 切换国内源(清华镜像)

Posted simply-face

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python pip anaconda conda 切换国内源(清华镜像)相关的知识,希望对你有一定的参考价值。

anaconda配置镜像

Mac and Linux

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

 Windows

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

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

 

pip配置镜像 

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

 

 

pip临时镜像

 

临时使用:

 

可以在使用pip的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple

 

例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple gevent,这样就会从清华这边的镜像去安装gevent库。

 

以上是关于python pip anaconda conda 切换国内源(清华镜像)的主要内容,如果未能解决你的问题,请参考以下文章

在Anaconda虚拟环境中pip安装的包无法使用

anaconda仓库中不包含python包,如何安装

python安装及pip django安装

在 Windows 中使用 Pip Python 3.5 anaconda 安装 tensorflow

2020-04-26 Window安装Anaconda后,python、pip、conda不是内部或者外部命令

在Windows10 + Anaconda中安装pip3工具