码迷,mamicode.com
首页 > 编程语言 > 详细

[python] 解决pip install download速度过慢问题 更换豆瓣源

时间:2018-08-21 19:01:34      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:python   rust   2016年   os.path   host   豆瓣   col   with open   lob   

"""
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速度过慢问题 更换豆瓣源

标签:python   rust   2016年   os.path   host   豆瓣   col   with open   lob   

原文地址:https://www.cnblogs.com/clemente/p/9513149.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!