Installation¶
Requirements¶
Ccdproc has the following requirements:
- Astropy v2.0 or later
- NumPy
- SciPy
- scikit-image
- astroscrappy
- reproject
One easy way to get these dependencies is to install a python distribution like anaconda.
Installing 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