************ Installation ************ Requirements ============ Ccdproc has the following requirements: - `Astropy`_ v1.0 or later - `Numpy `_ - `Scipy `_ - `astroscrappy `_ - `reproject `_ 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 --no-deps ccdproc .. note:: The ``--no-deps`` flag is optional, but highly recommended if you already have Numpy installed, since otherwise pip will sometimes try to "help" you by upgrading your Numpy installation, which may not always be desired. Using conda ------------- To install ccdproc with `anaconda `_, simple run:: conda install -c astropy 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):: python setup.py install 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