解决:An HTTP error occurred when trying to retrieve this URL. HTTP errors are often intermittent

anaconda安装没有问题,但是在环境里面导入包时候报错,有以下几种原因可能导致错误

原因一:镜像源导致的问题

方法一:修改镜像源

方法二:修改.condarc文件

参考网上即可,网上对于原因一导致的错误修改方法有很多

原因二:导致的问题

关掉重新导入

原因三:包的导入方式问题

我采用的是conda安装

conda install paddlepaddle==2.4.1 --channel https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/Paddle/

改成pip安装

python -m pip install paddlepaddle==2.4.1 -i https://pypi.tuna.tsinghua.edu.cn/simple

我的错误是原因三

你可能感兴趣的:(python)