Skip to content

Install

mfangaritav edited this page Jan 2, 2024 · 2 revisions

Standard Installation

If you want to use VMOD as it is, we recommend using Anaconda or Miniconda to create an environment in which to install VMOD to prevent dependency conflicts.

conda create --name vmod -c conda-forge "python=3.9.*" "pymc=2.3.8" "setuptools>=61"

PyMC must be installed with conda, pip fails to build version 2.3.8 on some machines.

conda activate vmod
pip install vmod-geodesy

Developer Installation

In case you want to modify VMOD to your needs, we recommend to clone the repository.

git clone https://github.com/uafgeotools/vmod

Then you must create a the environment using the vmod.yml file.

conda env create --name vmod --file=vmod.yml