Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions doc/python_faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,10 @@ fails with something like

::

amici/src/cblas.cpp:16:13: fatal error: cblas.h: No such file or directory
#include <cblas.h>
^~~~~~~~~
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 <amici_python_installation>`.
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.

--------------

Expand Down
Loading