标签:建立 ted class use 脚本 exists ppi not http
"""
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)
标签:建立 ted class use 脚本 exists ppi not http
原文地址:https://www.cnblogs.com/MeiCheng/p/11553194.html