Selecting a Software Stack

A “stack” is a collection of software designed to target the various use cases of our end-users. The three officially supported stacks are as follows:

Standard Software Stack (without IRAF)

The package management system, Conda, is now configured to pull from our repository, so you may go ahead and install the stsci package. This package installs nearly all of the software provided by STScI in one shot.

The following example generates a new conda environment named “astroconda”, however this naming convention is merely a suggestion. Feel free to use a name that works best for you.

$ conda create -n astroconda stsci

After the installation is complete go ahead and activate the “astroconda” environment. This command only needs to be executed one time per terminal session.

$ source activate astroconda

To deactivate the “astroconda” environment, close your terminal window or run:

$ source deactivate

Legacy Software Stack (with IRAF)

The maintainers of the AstroConda channel have limited resources to support IRAF, but users that require the ability to run IRAF and PyRAF tasks may want to install it via AstroConda. For help with any issues that come up during installation or use, please visit the PyRAF FAQ. Linux users please be sure to visit this FAQ entry for a quick guide to installing IRAF’s 32-bit dependencies.

The package management system, Conda, is now configured to pull from our repository, so you may go ahead and install the stsci package, as well as pyraf, and finally iraf. The stsci package installs nearly all of the software provided by STScI in one shot, however if you prefer a slimmed down IRAF/PyRAF experience, feel free to omit it.

Due to Python 3.x incompatibilities present in several tasks, it is recommended to install IRAF alongside Python 2.7.

The following example generates a new conda environment named “iraf27”, however this naming convention is merely a suggestion, so please feel free to apply a name that works best for you.

$ conda create -n iraf27 python=2.7 stsci pyraf iraf

After the installation is complete go ahead and activate the “iraf27” environment. This command only needs to be executed one time per terminal session.

$ source activate iraf27

To deactivate the “iraf27” environment, close your terminal window or run:

$ source deactivate

Pipeline Software Stack

Due to the nature of the pipeline software stack, the installation instructions have been consolidated under a separate section, Pipeline Releases.