关于由于防火墙问题而在本地执行conda安装的可能方法



我试图在anaconda中安装python包,但它收到了以下错误消息。我认为这是因为我们的组织只是更新了我们的防火墙系统。有没有任何方法可以在本地使用conda-install,例如,下载相关的anaconda包,并在本地安装。如果可能的话,怎么做?谢谢

(devenv) C:>conda install -c conda-forge fbprophet
Collecting package metadata (current_repodata.json): failed
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://conda.anaconda.org/conda-forge/win-64/current_repodata.json>
Elapsed: -
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.
'https://conda.anaconda.org/conda-forge/win-64'

使用pip通过anaconda提示符进行安装参考-

conda deactivate
conda activate <your_environment_name>
pip install fbprophet

同样基于返回的错误,它建议重新尝试。

最新更新