通过anaconda安装包

发布于 2025-01-13 06:58:32 字数 599 浏览 0 评论 0原文

我正在尝试使用 ubuntu 上安装的 anaconda 安装一些软件,

conda install -c conda-forge numpy scipy rdkit

但我不断收到消息,但没有任何反应:

Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done

我已经尝试通过以下方式解决它:

conda config --add channels conda-forge
conda config --set channel_priority flexible

I am trying to install some software using anaconda installed on ubuntu

conda install -c conda-forge numpy scipy rdkit

for which I have constant message and nothing happens:

Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done

i've already tried to resolved it via

conda config --add channels conda-forge
conda config --set channel_priority flexible

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乱了心跳 2025-01-20 06:58:32

也许遵循这个 Anaconda 的参考文献: https://anaconda.org/anaconda/numpy

conda create --name MYENV python=3.9
conda activate MYENV

conda install -c anaconda numpy 
conda install -c anaconda scipy 
conda install -c rdkit rdkit 

否则可能使用 点。

Maybe following this Anaconda's references : https://anaconda.org/anaconda/numpy

conda create --name MYENV python=3.9
conda activate MYENV

conda install -c anaconda numpy 
conda install -c anaconda scipy 
conda install -c rdkit rdkit 

otherwise maybe use pip.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文