当前位置:   article > 正文

python 3 国内镜像源 (阿里、清华、中科大)_python3国内镜像

python3国内镜像

友情提示:
如果 su 到 root ,当前路径没有改变,但是 ~ 已经改变,所以,su 之后的话,需要在新的 home 目录下创建 .pip 目录并配置

mkdir ~/.pip -p

vim ~/.pip/pip.conf

阿里云PyPI 镜像

[global]
index-url = https://mirrors.aliyun.com/pypi/simple

[install]
trusted-host=mirrors.aliyun.com
  • 1
  • 2
  • 3
  • 4
  • 5

清华镜像

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
  • 1
  • 2
  • 3
  • 4

中国科技大学

[global]
index-url = https://pypi.mirrors.ustc.edu.cn/simple
[install]
trusted-host = https://pypi.mirrors.ustc.edu.cn
  • 1
  • 2
  • 3
  • 4

临时使用方法
一安装 networking-ovn 4.0.4 版为例

阿里云
pip3 install networking-ovn==4.0.4 -i https://mirrors.aliyun.com/pypi/simple/

清华
pip3 install networking-ovn==4.0.4 -i https://pypi.tuna.tsinghua.edu.cn/simple/

中科大
pip3 install networking-ovn==4.0.4 -i https://pypi.mirrors.ustc.edu.cn/simple/

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/523593
推荐阅读
相关标签
  

闽ICP备14008679号