Installing ABSCALΒΆ
You will need to clone the ABSCAL source code from the github repository. cd into the directory where you would like to store the source code and run:
git clone https://github.com/spacetelescope/ABSCAL.git cd ABSCAL
The environment file can be used in two ways:
To create a new Conda environment named abscal run:
conda env create -f environment.yml conda activate abscal
To install to or update an existing (currently active) Conda environment:
conda env update --file environment.yml
You can now install ABSCAL from the repository, either by using its setup script directly:
python setup.py install
or by installing via pip:
pip install [-e] .
where the
-eflag makes the installation editable, and is useful if you intend to modify your local version.