Maître Renard
Maître Renard

Reputation: 71

installation packages via anaconda

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

Upvotes: 0

Views: 1836

Answers (1)

maggle
maggle

Reputation: 527

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.

Upvotes: 2

Related Questions