Installation#

Requirements#

Ccdproc has the following requirements:

One easy way to get these dependencies is to install a python distribution like anaconda.

Installing ccdproc#

Using pip#

To install ccdproc with pip, simply run:

pip install ccdproc

Using conda#

To install ccdproc with anaconda, run:

conda install -c conda-forge ccdproc

Building from source#

Obtaining the source packages#

Source packages#

The latest stable source package for ccdproc can be downloaded here.

Development repository#

The latest development version of ccdproc can be cloned from github using this command:

git clone git://github.com/astropy/ccdproc.git

Building and Installing#

To build ccdproc (from the root of the source tree):

python setup.py build

To install ccdproc (from the root of the source tree):

pip install .

To set up a development install in which changes to the source are immediately reflected in the installed package (from the root of the source tree):

pip install -e .

Testing a source code build of ccdproc#

The easiest way to test that your ccdproc built correctly (without installing ccdproc) is to run this from the root of the source tree:

python setup.py test