Greetings,
I encountered an error in this section,
====================================
gsl 2.8: linalg/test-suite.log
====================================
# TOTAL: 1
# PASS: 0
# SKIP: 0
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
.. contents:: :depth: 2
FAIL: test
==========
FAIL: cholesky_invert unscaled hilbert ( 4, 4)[0,2]: 2.55795384873636067e-13 0
(2.55795384873636067e-13 observed vs 0 expected) [28259614]`
It seems that this is just a test for the GSL package and can be ignored. I asked ChatGPT and it seems having this bash in the GSL section will solve the problem,
# ==========================================
# 3. INSTALL GSL
# ==========================================
GSL_FILE="gsl-latest.tar.gz"
handle_download "$GSL_FILE" "https://mirror.ibcp.fr/pub/gnu/gsl/$GSL_FILE"
echo "Extracting GSL..."
tar -zxvf "$GSL_FILE"
cd gsl-*/
./configure --prefix="$HOME"
make -j$(nproc)
# Run tests but do not abort on minor failures
if ! make check; then
echo "WARNING: Some GSL tests failed — continuing installation anyway."
fi
make install
cd "${HOME}/src"
Greetings,
I encountered an error in this section,
It seems that this is just a test for the GSL package and can be ignored. I asked ChatGPT and it seems having this bash in the GSL section will solve the problem,