diff --git a/doc/python_faq.rst b/doc/python_faq.rst index 68ec6f532e..0b5bfe7033 100644 --- a/doc/python_faq.rst +++ b/doc/python_faq.rst @@ -8,15 +8,10 @@ fails with something like :: - amici/src/cblas.cpp:16:13: fatal error: cblas.h: No such file or directory - #include - ^~~~~~~~~ - compilation terminated. - error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 - -**A**: You will have to install a CBLAS-compatible BLAS library and/or -set ``BLAS_CFLAGS`` as described in the -:ref:`installation guide `. + error: no member named 'fill' in namespace 'std::ranges' + +**A**: Try a more recent compiler. This error is caused by an older compiler +not supporting C++20 features used in the AMICI codebase. --------------