Installation

Standard

For most users, the following should be sufficient to install MAVISIM, download the data dependencies, and run the example notebook:

pip install mavisim
wget https://www.mso.anu.edu.au/~montys/mavisim_data/v1_1.tar.gz
tar -xzvf v1_1.tar.gz
cd example
jupyter notebook mavisim.ipynb

Explicit Version From PyPI

The latest stable version of MAVISIM can be directly installed via the Python Package Index:

pip install mavisim

For installing specific (e.g., legacy) versions, one can install from a previous pip release, e.g., to install v1.0.x:

pip install "mavisim>=1.0,<1.1" 

Explicit Version From Github

For beta-releases/dev branches, it is possible to install MAVISIM directly from a github:

pip install "git+https://github.com/smonty93/MAVISIM@[branch or tag]"

e.g., for version v1.0.2:

pip install "git+https://github.com/smonty93/MAVISIM@v1.0.2"