After downloading 64-bit miniconda on windows, I first created a new environment and adding the necessary channels according to pyseer documentation:
conda config --add channels defaults
conda config --add channels bioconda
conda config --add channels conda-forge
I want to install pyseer and its dependencies using:
conda install pyseer
However, every single time I try running this, it always ends up looking something like this:
(bioinformatics3) C:\Users\djian>conda install pyseer
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.
This can take several minutes. Press CTRL-C to abort.
failed
UnsatisfiableError:
I have already tried running this a couple of times and using the commands here as well, but still no luck. Why is this happening? Any insight/solutions would be amazing and please note that I am a new anaconda user with virtually no background in python/command line since I only am familiar with R. Thank you!