@@ -9,7 +9,6 @@ Short guide
9
9
Installation of the AMICI Python package has the following prerequisites:
10
10
11
11
* Python>=3.11
12
- * :term: `SWIG `>=4.1
13
12
* CBLAS compatible BLAS library
14
13
(e.g., OpenBLAS, CBLAS, Atlas, Accelerate, Intel MKL)
15
14
* a C++20 compatible C++ compiler and a C compiler
@@ -50,7 +49,7 @@ Install the AMICI dependencies via ``apt``
50
49
51
50
.. code-block :: bash
52
51
53
- sudo apt install libatlas-base-dev swig python3-dev
52
+ sudo apt install libatlas-base-dev python3-dev
54
53
55
54
# optionally for HDF5 support:
56
55
sudo apt install libhdf5-serial-dev
@@ -72,7 +71,7 @@ Install the AMICI dependencies via ``apt``
72
71
73
72
.. code-block :: bash
74
73
75
- sudo dnf install openblas-devel swig
74
+ sudo dnf install openblas-devel
76
75
77
76
Install AMICI:
78
77
@@ -88,7 +87,7 @@ Install the AMICI dependencies via ``pacman``
88
87
89
88
.. code-block :: bash
90
89
91
- sudo pacman -S python swig openblas gcc hdf5 boost-libs
90
+ sudo pacman -S python openblas gcc hdf5 boost-libs
92
91
93
92
Export the bash variables ``BLAS_CFLAGS `` and ``BLAS_LIBS `` to point to where BLAS was installed, e.g.:
94
93
@@ -109,13 +108,13 @@ Alternatively:
109
108
110
109
.. code-block :: bash
111
110
112
- sudo pacman -Si python swig openblas gcc hdf5 boost-libs
111
+ sudo pacman -Si python openblas gcc hdf5 boost-libs
113
112
114
113
2. Upgrade installed packages if required mininum versions are not satisfied for AMICI installation.
115
114
116
115
.. code-block :: bash
117
116
118
- sudo pacman -Su python swig openblas gcc hdf5 boost-libs
117
+ sudo pacman -Su python openblas gcc hdf5 boost-libs
119
118
120
119
3. Export the bash variables ``BLAS_CFLAGS `` and ``BLAS_LIBS `` to point to where BLAS was installed, e.g.:
121
120
@@ -138,8 +137,6 @@ Install the AMICI dependencies using homebrew:
138
137
139
138
.. code-block :: bash
140
139
141
- brew install swig
142
-
143
140
# optionally for HDF5 support:
144
141
brew install hdf5
145
142
@@ -399,8 +396,7 @@ To activate the environment, run:
399
396
400
397
(and ``conda deactivate `` later to deactivate it again).
401
398
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
404
400
install the latter locally, using:
405
401
406
402
.. code-block :: bash
0 commit comments