Installation with pip or setup.py

pip

To install the latest Gammapy stable version (see Gammapy page on PyPI) using pip:

$ python -m pip install gammapy

To install the current Gammapy development version using pip:

$ python -m pip install git+https://github.com/gammapy/gammapy.git#egg=gammapy

If that doesn’t work because the download from PyPI or Github is blocked by your network, but you have some other means of copying files onto that machine, you can get the tarball (.tar.gz file) from PyPI or .zip file from Github, and then python -m pip install <filename>.

setup.py

To download the latest development version of Gammapy:

$ git clone https://github.com/gammapy/gammapy.git
$ cd gammapy

Now you install, run tests or build the documentation:

$ python setup.py install
$ python setup.py test
$ python setup.py build_docs

If you want to contribute to Gammapy, but are not familiar with Python or git or Astropy yet, please have a look at the Astropy developer documentation.

Development version

You can install the development version of Gammapy like this:

python -m pip install --user git+https://github.com/gammapy/gammapy.git

This will git clone the Gammapy repository from Github into a temp folder and then build and install Gammapy from there.

If there are any errors related to Cython, Numpy or Astropy, you should install those first and try again:

conda install -c cython numpy astropy click regions
python -m pip install --user git+https://github.com/gammapy/gammapy.git

How to get set up for Gammapy development is described here: Get set up