通过anaconda安装包

installation packages via 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

也许遵循这个 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 

否则可能使用 pip.