pip更新及换源

作者: lizg | 来源:发表于2021-02-26 09:55 被阅读0次

pip更新

pip install pip -U # 升级pip到最新版本

更换镜像源

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

国内常用镜像源地址

1.  清华:[https://pypi.tuna.tsinghua.edu.cn/simple](https://pypi.tuna.tsinghua.edu.cn/simple)

2.  阿里云:[http://mirrors.aliyun.com/pypi/simple/](http://mirrors.aliyun.com/pypi/simple/)

3.  中国科技大学 [https://pypi.mirrors.ustc.edu.cn/simple/](https://pypi.mirrors.ustc.edu.cn/simple/)

4.  华中理工大学:[http://pypi.hustunique.com/](http://pypi.hustunique.com/)

5.  山东理工大学:[http://pypi.sdutlinux.org/](http://pypi.sdutlinux.org/)

6.  豆瓣:[http://pypi.douban.com/simple/](http://pypi.douban.com/simple/)

临时使用:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package

pip 更新失败

问题:ModuleNotFoundError: No module named 'pip'
解决:
python -m ensurepip
python -m pip install --upgrade pip

相关文章

  • pip更新及换源

    pip更新 pip install pip -U # 升级pip到最新版本 更换镜像源 pip config se...

  • Kali安装python pip3

    apt换源,使得更新源的时候更省时 apt更新源 安装pip3

  • pip换源

    换源的作用是可以加快python下载库的速度。本篇文章采用的方法是作者已经编辑好换源的文本文件,读者只需要下载后将...

  • 换pip源

    vim ~/.pip/pip.conf [global]index-url = http://mirrors.al...

  • pip换源

    pip3 config set global.index-url https://pypi.tuna.tsingh...

  • PIP换源

    pip国内的一些镜像 阿里云 http://mirrors.aliyun.com/pypi/simple/  中国...

  • pip换源

    写在前面:pip换源是一项非常重要的技术,例如Django模块,从官方源下载的话速度经常是20K/S,下几分钟也下...

  • pip换源

    转载:https://blog.csdn.net/chenghuikai/article/details/5525...

  • Pip换源

    Linux Windows 国内源

  • pip换源

    新建一个pip全局配置文件夹 打开文件夹进入下放目录%HOMEPATH%\AppData\Roaming 右键新建...

网友评论

    本文标题:pip更新及换源

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