pip国内镜像源
pip安装时,安装速度较慢,我们可以使用国内镜像源进行安装,速度较快。
清华镜像源
pip清华镜像源 https://pypi.tuna.tsinghua.edu.cn/simple
临时使用
pip install xxx-package -i https://pypi.tuna.tsinghua.edu.cn/simple
设置为默认国内镜像源
python -m pip install —upgrade pip
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
如果 pip 默认源的网络连接较差,临时使用镜像站来升级 pip:
python -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple —upgrade pip
其他国内源
北京外国语大学镜像 https://mirrors.bfsu.edu.cn/pypi/web/simple/
阿里云镜像 https://mirrors.aliyun.com/pypi/simple/
豆瓣镜像 http://pypi.douban.com/simple/
本文作者: Alone
本文链接: https://blog.nosecurity.cn/posts/21792.html
版权声明: 本博客所有文章除特别声明外,均为原创,采用 CC BY-SA 4.0 协议 ,转载请注明出处!