通过anaconda安装包
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许遵循这个 Anaconda 的参考文献: https://anaconda.org/anaconda/numpy
否则可能使用
点。
Maybe following this Anaconda's references : https://anaconda.org/anaconda/numpy
otherwise maybe use
pip
.