unlhcc / hcc-conda-recipes

Read-only mirror of the HCC conda recipes repo.
http://www.anaconda.org/hcc
BSD 3-Clause "New" or "Revised" License
4 stars 5 forks source link

Newer AFNI needs updated libjpeg #14

Open moloney opened 5 months ago

moloney commented 5 months ago

After installing "afni" versions "23.1.10" or "23.1.08" into a fresh environment I get an error when trying to launch the "afni" executable:

afni: error while loading shared libraries: libjpeg.so.9: cannot open shared object file: No such file or directory

The only channels I have activated are "hcc" and "conda-forge" in that order. Looking through the environment I can only find "libjpeg.so.8".

Installing the previous version "22.0.21" works.

npavlovikj commented 5 months ago

To install the correct jpeg version, you can use conda create -n afni afni=23.1.10 jpeg=9e. We can also look into adding jpeg 9e as dependency in the afni recipe if necessary.

Thank you, Natasha

moloney commented 5 months ago

Thanks, your workaround fixed the problem for me. Fixing the recipe would be nice, but obviously that is up to your discretion.