python使用国内镜像库
Posted pu369com
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用国内镜像库相关的知识,希望对你有一定的参考价值。
使用python虽然导入库非常方便,但有时也会碰到许多的问题。下载速度有时候很慢。在网上找来了一个关于将python的pip调成寻找国内镜像的方法。
国内镜像地址:
http://pypi.douban.com/simple/ 豆瓣
http://mirrors.aliyun.com/pypi/simple/ 阿里
http://pypi.hustunique.com/simple/ 华中理工大学
http://pypi.sdutlinux.org/simple/ 山东理工大学
http://pypi.mirrors.ustc.edu.cn/simple/ 中国科学技术大学
https://pypi.tuna.tsinghua.edu.cn/simple 清华
如何使用
1、临时使用,添加“-i”或“--index”参数
pip install -i http://pypi.douban.com/simple/ flask
2、配制成默认的
在你的“C:\\Users\\你的用户名\\”目录下创建“pip”目录,“pip”目录下创建“pip.ini”文件(注意:以UTF-8 无BOM格式编码);
“pip.ini”文件内容:
[global]
index-url=http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
注意:trusted-host 选项为了避免麻烦是必须的,否则使用的时候会提示不受信任,或者添加“--trusted-host=mirrors.aliyun.com”选项
参考:https://www.cnblogs.com/htx18/p/11834123.html
以上是关于python使用国内镜像库的主要内容,如果未能解决你的问题,请参考以下文章
不用pip官方源安装Python扩展库的方法(使用国内的镜像源)