寫在前面
這篇文章是我學(xué)習(xí)Python的一些心得組織起來(lái)的荆忍,內(nèi)容會(huì)逐漸豐富起來(lái)本冲,所有標(biāo)有undone都是我挖的坑厨埋,后續(xù)會(huì)陸續(xù)填上邪媳。希望大家能夠共同學(xué)習(xí),謝謝大家
Pip的安裝(undone)
Pip源的設(shè)置
由于某些不可抗因素荡陷,Python官方的包在國(guó)內(nèi)有時(shí)無(wú)法訪問或出現(xiàn)網(wǎng)絡(luò)不穩(wěn)定現(xiàn)象雨效。為了解決這個(gè)問題就需要將Pip中自帶的源地址修改為鏡像地址。
目前收集的比較好的鏡像地址有:
http://pypi.douban.com/simple/ (現(xiàn)在豆瓣的不是很穩(wěn)定)
http://mirrors.aliyun.com/pypi/simple/ (個(gè)人推薦使用阿里云的废赞,速度快)
以下地址建議教育網(wǎng)用戶使用
http://pypi.hustunique.com/ 華中理工大學(xué)
http://pypi.sdutlinux.org/ 山東理工大學(xué)
http://pypi.mirrors.ustc.edu.cn/ 中國(guó)科學(xué)技術(shù)大學(xué)
直接修改配置的方法:
在用戶文件夾下創(chuàng)建pip目錄徽龟,并在pip目錄下創(chuàng)建pip.ini文件(%HOMEPATH%\pip\pip.ini)
也可以在C:\Users\Administrator\AppData\Local\pip目錄下創(chuàng)建pip.ini文件
pip.ini 可以復(fù)制如下內(nèi)容:
[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun.com/pypi/simple/
備注:index-url即源地址,trusted-host為源地址的域名唉地,由于國(guó)內(nèi)的源鏡像都為使用https協(xié)議据悔,所以如果不添加信任域就會(huì)報(bào):
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
(未完待續(xù))