Hello,
Several members of our lab got into the same issue on different laptop configurations when installing one of the dependencies of the perl script that runs indedible. I am posting our solution here because it seems to be a common problem on linux systems (at least for us!)
The issue occurs when installing Math::GSL with the command
sudo cpan Math::GSL::RNG
One unit test (test_alien) fails at the end of the installation and cpan aborts.
One can force the installation despite the failing test by running sudo cpan, and then typing force install Math::GSL in the interactive console. Bypassing the test doesn't seem to affect the indelible perl script.
Some of us ran into a second issue:
"Unsupported GSL version!!! : 2.7.1 at Build.PL line 85"
We fixed it by installing the package gsl-dev:
sudo apt install libgsl-dev
which installed GSL version 2.5 (at least when I ran it). Installing Math::GSL with cpan then works.
I hope that helps someone. If anyone has a cleaner solution, please share ;-)
Best,
Benoit