Python pip源
用pip管理工具安装库文件时,默认使用国外的源文件,因此在国内的下载速度会比较慢,因此使用国内的镜像。其中,比较常用的国内镜像包括:
- 阿里云:http://mirrors.aliyun.com/pypi/simple/
- 豆瓣:http://pypi.douban.com/simple/
- 清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
- 中国科学技术大学:http://pypi.mirrors.ustc.edu.cn/simple/
- 华中科技大学:http://pypi.hustunique.com/
设置方法:
-
临时使用:
可以在使用pip的时候,加上参数-i和镜像地址:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas -
永久修改:
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host = https://pypi.tuna.tsinghua.edu.cn
[global] index-url = http://pypi.douban.com/simple [install] trusted-host = pypi.douban.com
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。