Python配置镜像源

2023-12-27 12:05:37

1. 查看当前源

pip config get global.index-url

2. 临时变更源

pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple

3. 永久变更源

清华(推荐速度最快)

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

百度

pip config set global.index-url https://mirror.baidu.com/pypi/simple

腾讯

pip config set global.index-url https://mirrors.cloud.tencent.com/pypi/simple

中国科学技术大学开源软件镜像站

pip config set global.index-url https://mirrors.ustc.edu.cn/pypi/web/simple

4. 官方镜像源

pip config set global.index-url https://pypi.org/simple

文章来源:https://blog.csdn.net/yimtcode/article/details/135231818
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。