码迷,mamicode.com
首页 > 其他好文 > 详细

设置阿里云pip源,加速pip更新速度

时间:2018-05-11 15:35:44      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:pip linux

Linux系统:
mkdir ~/.pip
cat > ~/.pip/pip.conf << EOF
[global]
trusted-host=mirrors.aliyun.com
index-url=https://mirrors.aliyun.com/pypi/simple/
EOF

Windows系统:

首先在window的文件夹窗口输入 : %APPDATA%
然后创建pip文件夹
最后创建pip.ini文件,写入如下内容
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

添加清华大学pip源

mkdir ~/.pip
cat > ~/.pip/pip.conf << EOF
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
EOF

设置阿里云pip源,加速pip更新速度

标签:pip linux

原文地址:http://blog.51cto.com/ko178/2115252

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!