1. 程式人生 > >[python] 解決pip install download速度過慢問題 更換豆瓣源

[python] 解決pip install download速度過慢問題 更換豆瓣源

速度 spa rust environ sts use sim span com

"""
python建立pip.ini.py
2016年4月30日 03:35:11 codegay
"""

import os

ini="""[global]
index-url = https://pypi.doubanio.com/simple/
[install]
trusted-host=pypi.doubanio.com
"""
pippath=os.environ["USERPROFILE"]+"\\pip\\"

if not os.path.exists(pippath):
    os.mkdir(pippath)

with open(pippath+"pip.ini","w+"
) as f: f.write(ini)

運行以下python代碼會自動建立pip.ini

[python] 解決pip install download速度過慢問題 更換豆瓣源