0. Install - wolfiex/AerVis GitHub Wiki
There are several methods to install the AerVis Package. These are outlined below.
Complete install
For the user who does not intend to edit the package.
anaconda package - when this is finished.
NOT YET WORKING conda install aervis -c wolfiex
setuptools
python setup.py install
pip
pip install .
Developer Mode !!recommended!!
This creates a symbolically linked python library, where any changes to the install repository are consequently propagated to python. This type of install can be achieved as follows:
setuptools
First install iris, and cartopy
conda install -c conda-forge cartopy iris
Then install the package
python setup.py develop
pip
pip install -e .