美文网首页
解决pip install download速度过慢问题 更换豆

解决pip install download速度过慢问题 更换豆

作者: Clemente | 来源:发表于2018-06-25 12:34 被阅读16次
    """
    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

    相关文章

      网友评论

          本文标题:解决pip install download速度过慢问题 更换豆

          本文链接:https://www.haomeiwen.com/subject/exfyyftx.html