美文网首页
【python pip】一招解决pip下载过慢问题

【python pip】一招解决pip下载过慢问题

作者: lomtom | 来源:发表于2020-03-12 20:53 被阅读0次

    概述

    在我们经常使用pip安装插件模块的时候,有没有发现下载速度很慢,但有些有强迫症的人面对几k几十k每秒的速度绝对忍不了,是不是,那么,方法来了。

    壹:问题描述

    一句话就是使用pip下载过慢,想要快起来,起来,来。

    贰:解决过程

    一、问题分析

    pip下载速度过慢的原因就是pip默认使用的是国外的镜像源,那么,我使用国内的镜像源,问题不就解决了。

    二、问题解决

    有两种方法,方法一临时有效,方法二永久生效。

    方法一:下载时加入参数-i [镜像源地址]

    pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jieba
    或者
    pip install jieba -i https://pypi.tuna.tsinghua.edu.cn/simple
    

    方法二:设置源

    使用方法一,需要每次在下载时都要带参数,不想麻烦的试试方法二吧。

    pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
    pip config set install.trusted-host mirrors.aliyun.com
    
    image

    三、国内镜像源地址

    # pip国内镜像源。
    #
    # 阿里云   http://mirrors.aliyun.com/pypi/simple/
    # 中国科技大学    https://pypi.mirrors.ustc.edu.cn/simple/
    # 豆瓣     http://pypi.douban.com/simple
    # Python官方   https://pypi.python.org/simple/
    # v2ex   http://pypi.v2ex.com/simple/
    # 中国科学院     http://pypi.mirrors.opencas.cn/simple/
    # 清华大学   https://pypi.tuna.tsinghua.edu.cn/simple/
    

    叁:作者有话

    更换源后,你的速度就能飞起来了。歪瑞谷的。


    作者

    1、作者个人网站
    2、作者CSDN
    3、作者博客园
    4、作者简书

    相关文章

      网友评论

          本文标题:【python pip】一招解决pip下载过慢问题

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