写在前面
这篇文章是我学习Python的一些心得组织起来的,内容会逐渐丰富起来,所有标有undone都是我挖的坑,后续会陆续填上。希望大家能够共同学习,谢谢大家
Pip的安装(undone)
Pip源的设置
由于某些不可抗因素,Python官方的包在国内有时无法访问或出现网络不稳定现象。为了解决这个问题就需要将Pip中自带的源地址修改为镜像地址。
目前收集的比较好的镜像地址有:
http://pypi.douban.com/simple/ (现在豆瓣的不是很稳定)
http://mirrors.aliyun.com/pypi/simple/ (个人推荐使用阿里云的,速度快)
以下地址建议教育网用户使用
http://pypi.hustunique.com/ 华中理工大学
http://pypi.sdutlinux.org/ 山东理工大学
http://pypi.mirrors.ustc.edu.cn/ 中国科学技术大学
直接修改配置的方法:
在用户文件夹下创建pip目录,并在pip目录下创建pip.ini文件(%HOMEPATH%\pip\pip.ini)
也可以在C:\Users\Administrator\AppData\Local\pip目录下创建pip.ini文件
pip.ini 可以复制如下内容:
[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun.com/pypi/simple/
备注:index-url即源地址,trusted-host为源地址的域名,由于国内的源镜像都为使用https协议,所以如果不添加信任域就会报:
This repository located at mirrors.aliyun.com is not a trusted host, if this repository is available via HTTPS it is recommend to use HTTPS instead, otherwise you may silence this warning with ‘–trusted-host mirrors.aliyun.com’.
DEPRECATION: Implicitly allowing locations which are not hosted at a secure origin is deprecated and will require the use of –trusted-host in the future.
Requirement already up-to-date: pip in /usr/lib/python2.7/site-packages
(未完待续)
网友评论