美文网首页
pip更换国内安装源

pip更换国内安装源

作者: 无畏绽放 | 来源:发表于2019-11-30 20:22 被阅读0次

    1.pip国内的一些镜像:
       阿里云 http://mirrors.aliyun.com/pypi/simple/
       中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
       豆瓣(douban) http://pypi.douban.com/simple/
       清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
       中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

    2.修改源方法:
    2.1临时使用:可以在使用pip的时候在后面加上-i参数,指定pip源
    eg:

    pip install tensorflow-gpu==1.14 -i https://pypi.tuna.tsinghua.edu.cn/simple
    

    2.2永久修改:
    2.2.1linux:
    修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:

    [global]
    index-url = https://pypi.tuna.tsinghua.edu.cn/simple
    

    2.2.2windows:
    直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,在pip 目录下新建文件pip.ini,内容如下:

    [global]
    timeout = 6000
    index-url = https://pypi.tuna.tsinghua.edu.cn/simple
    trusted-host = pypi.tuna.tsinghua.edu.cn
    

    相关文章

      网友评论

          本文标题:pip更换国内安装源

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