Installation

The grmpy package can be conveniently installed from the Python Package Index (PyPI) or directly from its source files. We currently support Python 2.7 and Python 3.6 on Linux systems.

Python Package Index

You can install the stable version of the package the usual way.

$ pip install grmpy

Source Files

You can download the sources directly from our GitHub repository.

$ git clone https://github.com/OpenSourceEconomics/grmpy.git

Once you obtained a copy of the source files, installing the package in editable model is straightforward.

$ pip install -e .

Test Suite

Please make sure that the package is working properly by running our test suite using pytest.

$ python -c "import grmpy; grmpy.test()"