Python一串代码提升pip的下载速度

Python一串代码提升pip的下载速度,第1张

Python一串代码提升pip的下载速度
from getpass import getuser
from os import makedirs
makedirs("C:\Users\"+getuser()+"\pip\")
f=open("C:\Users\"+getuser()+"\pip\pip.ini","w")
f.write("""

[global]
index-url=https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

""")
f.close()

程序做了什么:

修改了pip的下载源,从国外源改成了阿里云镜像源

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4830137.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-10
下一篇 2022-11-10

发表评论

登录后才能评论

评论列表(0条)

保存