用Anaconda下载SciPy失败了。
用"conda install -c anaconda scipy" 命令来安装sicpy,失败提示:
CondaHTTPError: HTTP 000 CONNECTION FAILED for url http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/win-64/current_repodata.json
An HTTP error occurred when trying to retrieve this URL.
HTTP errors are often intermittent, and a simple retry will get you on your way.
"http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/win-64"
我猜想应该是镜像源出了问题。这个老镜像源是我在2020年配置的。请问,各位到大佬,我怎么样配置新的镜像源。
或者如果是其他问题,我该怎么办,我就想在anaconda里安装个SciPy
要配置新的镜像源以解决Anaconda下载失败的问题,您可以按照以下步骤进行操作:
打开Anaconda Prompt(或者在终端中),以管理员身份运行以确保具有足够的权限。
执行以下命令备份当前的镜像源配置文件(可选):
arduino
Copy code
conda config --set backup_conda-forge --file ~/.condarc
执行以下命令配置新的镜像源(这里以清华大学的镜像源为例):
arduino
Copy code
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --set show_channel_urls yes
这些命令将清华大学的镜像源添加为首选的Anaconda镜像源,并允许您从这些源中安装软件包。
执行以下命令清除缓存以确保使用新的镜像源:
css
Copy code
conda clean --all
最后,尝试重新安装SciPy:
r
Copy code
conda install -c anaconda scipy
这样,您应该能够使用新的镜像源成功安装SciPy。如果仍然遇到问题,请提供详细的错误信息和上下文,以便我能够更好地帮助您解决问题。
谢谢各位大佬的帮助。我改了镜像后,用"conda install..."下载还是失败了。但是用"pip install..."就成功下载了,SciPy,scikit-learn
– 绘心人 1年前