I am trying to create a conda environment in a Linux cluster using the following command:
conda env create -f env.yml -p ./env
but after "Collecting package metadata (repodata.jason)" is finished, the process is stuck at "solving environment", which has lasted for over 24 h and is still running. I google this problems. Although some people got the same problem and no correct resolution can be found.
I tried to check the .condarc file to modify the channels. Although "conda info" command showed the condarc file existed (/PHShome/ys738/.condarc), it is actually not in that location. Could you tell me why?
The channels shown by "conda info" include:
https://repo.anaconda.com/pkgs/main/linux-64
https://repo.anaconda.com/pkgs/main/noarch
https://repo.anaconda.com/pkgs/r/linux-64
https://repo.anaconda.com/pkgs/r/noarch
I added two channels (conda-forge, bioconda) by using "conda config --add", but it is still stuck at "solving environment". Do anyone know an effect way to address this issue?