Hello everyone, surely this is something that has already been posted several times, but reading around on various topics, I can't find a definitive solution. How can I solve the issue that occurs when installing packages via conda? For example, I was trying this and it gives me this error that repeats with all the packages I want to install.
conda install -c nanoporetech -c conda-forge -c bioconda "nanoporetech::pychopper"
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): - Killed
What can I do? Thanks to everyone for the support. (conda version: 22.9.0)
Thanks so much Ian for your reply, the command I wrote above was already run in a conda environment created specifically for pychopper. My RAM is limited for the moment at 8 GB I don't know what to do
You might have better luck creating environments with
mamba
as it appears to be more memory efficient thanconda
. See discussion here. Another alternative is using an existing docker container, see list here. Though, if your machine is limited to 8Gb, I suspect any analysis with pychopper itself would run out of memory unless you ran it on very small batches.Thanks, I managed to install mamba and with it also pychopper. I'll try it out