Installation
openAMUNDSEN is a Python (3.7+) package and compatible with all major platforms (Linux, macOS, Windows) and architectures.
To help keep its dependencies separated from other Python packages installed on your system, we recommend to install it either from within a conda environment (if you are using the conda package manager) or a standard Python virtual environment.
Using conda
When using conda, the recommended steps to install openAMUNDSEN are:
- Install Miniconda (recommended) or Anaconda by downloading and executing the installer for your operating system and architecture.
-
From the terminal, create a conda environment for openAMUNDSEN by running
conda create --name openamundsen
-
Activate the environment by running
conda activate openamundsen
-
Install openAMUNDSEN by running
conda install --channel=conda-forge openamundsen
If you want to use the LiveView window during model runs, additionally install the packages matplotlib and PyQt5 by running
conda install --channel=conda-forge matplotlib
and
pip install PyQt5
Using virtualenv
If you want to install openAMUNDSEN in a virtual environment instead:
-
Create a virtualenv in the current working directory by running
python3 -m venv openamundsen
-
Activate the environment by running
source openamundsen/bin/activate
-
Install openAMUNDSEN by running
pip install openamundsen
If you want to use the LiveView window during model runs, additionally install the packages matplotlib and PyQt5 by running
pip install matplotlib PyQt5