0


python更换国内镜像源

方法1:(永久更改)

在python的命令提示符中运行以下语句,该条语句将pip的下载源永久更改为某个镜像站,这里以清华大学开源镜像站为例:

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

方法2:(永久更改)

windows环境下,在用户目录中创建一个文件夹,该文件夹的命名为pip;在该pip文件夹中新建一个文件pip.ini,pip.ini的内容如下:(完整路径:C:\Users\用户名\pip\pip.ini)

[global]
index-url=https://pypi.tuna.tsinghua.edu.cn/simple 
[install]  
trusted-host=pypi.tuna.tsinghua.edu.cn
disable-pip-version-check = true  
timeout = 6000

方法3:(临时性使用)

在安装库的时候,临时需要用到某个镜像,这里以清华大学镜像为例下载pandas库:

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

备注:pip下载源常用的国内镜像如下:

豆瓣:http://pypi.douban.com/simple/
阿里云:http://mirrors.aliyun.com/pypi/simple/
华为云:https://repo.huaweicloud.com/repository/pypi/simple
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple
中科大:https://pypi.mirrors.ustc.edu.cn/simple/

本文转载自: https://blog.csdn.net/Castle_520/article/details/127548410
版权归原作者 破壳的小企鹅 所有, 如有侵权,请联系我们删除。

“python更换国内镜像源”的评论:

还没有评论