Installation

exogaia is currently a private repository on Github, but will be publicly released in the future. Interested to use the code already? Please send an email with a request to be included as collaborator in the Github repo.

The following installation instructions are for future purpose and don’t work yet.

Installation from PyPI

The exogaia tool can be installed with the pip package manager:

$ pip install exogaia

Or, to update exogaia to the most recent version:

$ pip install --upgrade exogaia

Installation from Github

Using pip

The repository on Github contains the latest implementations and can also be installed with pip:

$ pip install git+https://github.com/tomasstolker/exogaia.git

Cloning the repository

In case you want to look into the code, it is best to clone the repository:

$ git clone https://github.com/tomasstolker/exogaia.git

Next, the package is installed by running pip in the local repository folder:

$ pip install -e .

New commits can be pulled from Github once a local copy of the repository exists:

$ git pull origin main

Do you want to make changes to the code? Please fork the exogaia repository on the Github page and clone your own fork instead of the main repository. Contributions and pull requests are welcome (see About section).

Testing exogaia

The installation can now be tested, for example by starting Python in interactive mode and importing the package:

>>> import exogaia