Skip to content

Versions

The newest version

To install the package, the easiest way is to us the Python package manager pip. Simply install the package hosted on our homepage:

pip install https://isbgroup.eu/sund-toolbox/releases/sund-1.3.2.tar.gz

Older versions

Older versions of the toolbox are also available. To install these use the same command as above:

pip install https://isbgroup.eu/sund-toolbox/releases/sund-<VERSION>.tar.gz

Replace <VERSION> with the appropriate version number.
All version of the toolbox can be found at isbgroup.eu/sund-toolbox/releases.

Incompatibility between GCC>13 and SUND<1.2.0

SUND Toolbox versions older than 1.2.0 are not compatible with GCC versions higher than GCC 13. To install one of these packages, GCC must be downgraded to GCC 13.

On Linux and MacOS systems, if older versions of GCC are installed, SUND can be built with a specific GCC version by exporting the `CC` shell variable with the path to the desired GCC executable:

```bash
export CC=/usr/bin/gcc-13
```