美文网首页
Python PIP 镜像代理

Python PIP 镜像代理

作者: LoganLu | 来源:发表于2020-07-27 10:31 被阅读0次

    没有代理,有时候安装python包会非常非常痛苦。反复的timeout,半天也装不上。解决办法就是下边的代理设置。

    设置方法

    1. 手动指定安装源 安装某个python模块

    >pip -i http://pypi.douban.com/simple install numpy
    
    

    2. 每次都手动指定安装源很麻烦,可以配置pip更新源(在*nix上)

    >cd ~
    >mkdir .pip
    >cd .pip
    >vi pip.conf 
    #输入下边的内容,不包括本行
    [global]
    trusted-host = mirrors.ustc.edu.cn
    index-url = https://mirrors.ustc.edu.cn/pypi/web/simple
    
    

    3.对于window系统修改配置文件在 %HOMEPATH%\pip\pip.ini ,基本配置与linux版的配置相同

    常用镜像源

    http://pypi.douban.com/豆瓣

    http://pypi.hustunique.com/华中理工大学

    http://pypi.sdutlinux.org/山东理工大学

    http://pypi.mirrors.ustc.edu.cn/中国科学技术大学

    http://mirrors.aliyun.com/pypi/simple/阿里云

    https://pypi.tuna.tsinghua.edu.cn/simple/清华大学

    相关文章

      网友评论

          本文标题:Python PIP 镜像代理

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