InstallationΒΆ

You can install the astrotools via pip. Simply run:

$ pip install astrotools --user

If you like to have the latest version (which is not an official release version), you can clone the astrotools in a local folder and install it via pip from there:

$ git clone https://git.rwth-aachen.de/astro/astrotools.git
$ cd astrotools
$ pip install . --user

The astrotools require additional dependencies (numpy, matplotlib, scipy, healpy), which you can easily install via pip:

$ pip install numpy
$ pip install scipy
$ pip install matplotlib
$ pip install healpy