COMBINE-lab / simpleaf

A rust framework to make using alevin-fry even simpler
BSD 3-Clause "New" or "Revised" License
44 stars 3 forks source link

libgcc-ng >=12 needed for installation #42

Closed chjp closed 1 year ago

chjp commented 1 year ago

conda installation returns error: nothing provides libgcc-ng >=12 needed by simpleaf-0.2.1-h9f5acd7_0

rob-p commented 1 year ago

Perhaps try adding Conda-forge to your list of channels, they seem to have a sufficient version here.

conda config --add channels defaults
conda config --add channels bioconda
conda config --add channels conda-forge
conda config --set channel_priority strict
chjp commented 1 year ago

conda config --add channels conda-forge works. Thanks.