关于由于防火墙问题在本地执行 conda 安装的可能方法
regarding the possible approaches of performing conda install locally due to the firewall issue
我试图在 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 提示安装
ref -
conda deactivate
conda activate <your_environment_name>
pip install fbprophet
同样根据返回的错误,建议重试。
我试图在 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 提示安装 ref -
conda deactivate
conda activate <your_environment_name>
pip install fbprophet
同样根据返回的错误,建议重试。