@@ -9,7 +9,6 @@ Short guide
99Installation of the AMICI Python package has the following prerequisites:
1010
1111* Python>=3.11
12- * :term: `SWIG `>=4.1
1312* CBLAS compatible BLAS library
1413 (e.g., OpenBLAS, CBLAS, Atlas, Accelerate, Intel MKL)
1514* a C++20 compatible C++ compiler and a C compiler
@@ -50,7 +49,7 @@ Install the AMICI dependencies via ``apt``
5049
5150.. code-block :: bash
5251
53- sudo apt install libatlas-base-dev swig python3-dev
52+ sudo apt install libatlas-base-dev python3-dev
5453
5554 # optionally for HDF5 support:
5655 sudo apt install libhdf5-serial-dev
@@ -72,7 +71,7 @@ Install the AMICI dependencies via ``apt``
7271
7372.. code-block :: bash
7473
75- sudo dnf install openblas-devel swig
74+ sudo dnf install openblas-devel
7675
7776 Install AMICI:
7877
@@ -88,7 +87,7 @@ Install the AMICI dependencies via ``pacman``
8887
8988.. code-block :: bash
9089
91- sudo pacman -S python swig openblas gcc hdf5 boost-libs
90+ sudo pacman -S python openblas gcc hdf5 boost-libs
9291
9392 Export the bash variables ``BLAS_CFLAGS `` and ``BLAS_LIBS `` to point to where BLAS was installed, e.g.:
9493
@@ -109,13 +108,13 @@ Alternatively:
109108
110109.. code-block :: bash
111110
112- sudo pacman -Si python swig openblas gcc hdf5 boost-libs
111+ sudo pacman -Si python openblas gcc hdf5 boost-libs
113112
114113 2. Upgrade installed packages if required mininum versions are not satisfied for AMICI installation.
115114
116115.. code-block :: bash
117116
118- sudo pacman -Su python swig openblas gcc hdf5 boost-libs
117+ sudo pacman -Su python openblas gcc hdf5 boost-libs
119118
120119 3. Export the bash variables ``BLAS_CFLAGS `` and ``BLAS_LIBS `` to point to where BLAS was installed, e.g.:
121120
@@ -138,8 +137,6 @@ Install the AMICI dependencies using homebrew:
138137
139138.. code-block :: bash
140139
141- brew install swig
142-
143140 # optionally for HDF5 support:
144141 brew install hdf5
145142
@@ -399,8 +396,7 @@ To activate the environment, run:
399396
400397 (and ``conda deactivate `` later to deactivate it again).
401398
402- :term: `SWIG ` must be installed and available in your ``PATH ``, and a
403- CBLAS-compatible BLAS must be available. You can also use conda to
399+ A CBLAS-compatible BLAS must be available. You can also use conda to
404400install the latter locally, using:
405401
406402.. code-block :: bash
0 commit comments