码迷,mamicode.com
首页 > 编程语言 > 详细

python 中pip配置清华源

时间:2020-03-03 00:34:49      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:users   glob   comment   sim   gevent   com   直接   and   镜像   

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配置清华源

标签:users   glob   comment   sim   gevent   com   直接   and   镜像   

原文地址:https://www.cnblogs.com/max404/p/12399159.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
分享档案
周排行
mamicode.com排行更多图片
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!