This is a test version of Biostars. For the public version, visit https://www.biostars.org.
what is the deal with bioconda?

Is there any kind of conflict-checking for this channel?

I've never had a problem installing conda packages until I tried:

conda create --name seur01 -y 

conda activate seur01 

conda install -c bioconda r-seurat

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 
Solving environment: failed with initial frozen solve. 
Retrying with flexible solve. 
Solving environment: /  Found conflicts! 
Looking for incompatible packages.                                                              
failed                                                                

UnsatisfiableError:

And that's it! There is no more output.

conda bioconda

1 answer

Make sure the order of channels is as follows.

conda config --add channels defaults
conda config --add channels bioconda
conda config --add channels conda-forge

I don't see the problem you are getting.

confirmed, thanks @genomax

It's December 6, 2020, and this comment solved the problem related to bioconda package installation I have been tackling for >48 hours. Thank you so much @GenoMax!

thanks. it works great and solved the problem!

Log in to answer this question.