美文网首页
python使用阿里云镜像

python使用阿里云镜像

作者: 殷临风 | 来源:发表于2017-08-15 16:48 被阅读396次

    如果使用的阿里云Linux服务器, 默认会在用户目录下创建pip配置文件, 并指定镜像源为自己的. 如果我们使用其他服务商, 最好把python镜像源配置成阿里云的或其他镜像源, 否则下载速度回很慢

    Linux
    # 进入用户目录
    cd ~ 
    # 如果不存在则创建
    mkdir .pip
    # 编辑pip默认配置文件
    vi .pip/pip.conf
    # 写入
    ###########################################
    [global]
    index-url=http://mirrors.aliyun.com/pypi/simple/
    
    [install]
    trusted-host=mirrors.aliyun.com
    ##########################################
    
    Windows
    1. 进入用户目录
    2. 创键 pip 文件夹
    3. 创建文件名为 pip.ini 的配置文件
    4. 添加内容
    ###########################################
    [global]
    index-url=http://mirrors.aliyun.com/pypi/simple/
    
    [install]
    trusted-host=mirrors.aliyun.com
    ##########################################
    

    最终结果如下:

    相关文章

      网友评论

          本文标题:python使用阿里云镜像

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