“Pip更换为国内源”的版本间的差异
跳到导航
跳到搜索
docker>Evan |
|||
(未显示同一用户的1个中间版本) | |||
第7行: | 第7行: | ||
cat >>~/.pip/pip.conf<<EOF | cat >>~/.pip/pip.conf<<EOF | ||
[global] | [global] | ||
− | index-url = | + | index-url = https://mirrors.aliyun.com/pypi/simple/ |
[install] | [install] | ||
第26行: | 第26行: | ||
pip install uwsgi -i http://mirrors.aliyun.com/pypi/simple | pip install uwsgi -i http://mirrors.aliyun.com/pypi/simple | ||
</pre> | </pre> | ||
+ | |||
+ | https://developer.aliyun.com/article/652884 | ||
==参考== | ==参考== |
2020年9月8日 (二) 07:11的最新版本
Details
install
mkdir -p ~/.pip #vim ~/.pip/pip.conf cat >>~/.pip/pip.conf<<EOF [global] index-url = https://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com EOF #注意左边不能有空格 其他国内源地址如下: 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/ 现在使用pip安装组件就可以体会到飞一般的速度了。 如果是临时使用国内地址可以在安装组件的时候加参数-i pip install uwsgi -i http://mirrors.aliyun.com/pypi/simple
https://developer.aliyun.com/article/652884
参考
https://www.cnyunwei.cc/archives/877