Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update python_installation.rst #2212

Merged
merged 5 commits into from
Dec 1, 2023
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
16 changes: 15 additions & 1 deletion documentation/python_installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,13 @@ Install the AMICI dependencies via ``pacman``

sudo pacman -S python swig openblas gcc hdf5 boost-libs

Export the bash variables ``BLAS_CFLAGS`` and ``BLAS_LIBS`` to point to where BLAS was installed, e.g.:

.. code-block:: bash
dweindl marked this conversation as resolved.
Show resolved Hide resolved

export BLAS_CFLAGS="-I/usr/include/openblas/"
export BLAS_LIBS="-lopenblas"

Install AMICI:

.. code-block:: bash
Expand All @@ -99,7 +106,14 @@ Alternatively:

sudo pacman -Su python swig openblas gcc hdf5 boost-libs

3. Install AMICI:
3. Export the bash variables ``BLAS_CFLAGS`` and ``BLAS_LIBS`` to point to where BLAS was installed, e.g.:

.. code-block:: bash
dweindl marked this conversation as resolved.
Show resolved Hide resolved

export BLAS_CFLAGS="-I/usr/include/openblas/"
export BLAS_LIBS="-lopenblas"

4. Install AMICI:

.. code-block:: bash

Expand Down
Loading