diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2020-04-07 10:42:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 10:42:48 -0400 |
commit | e842d03ef0b3bf6e17aea6d0b31032477550f4e6 (patch) | |
tree | ccfcd49d9943ad0a6ee63dfde0a178df0a972bc9 /caldp/darktime/README.md | |
parent | 14aca8b61965d31f97fde3d062aa7073f11b1d0a (diff) | |
download | astroconda-releases-testing-e842d03ef0b3bf6e17aea6d0b31032477550f4e6.tar.gz |
Acs darktime (#118)
* hcaldp darktime_acs delivery rc1
Diffstat (limited to 'caldp/darktime/README.md')
-rw-r--r-- | caldp/darktime/README.md | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/caldp/darktime/README.md b/caldp/darktime/README.md new file mode 100644 index 0000000..a18423e --- /dev/null +++ b/caldp/darktime/README.md @@ -0,0 +1,63 @@ +NOTE: This release continues in using some recently introduced minor changes in installation +procedures. Please see below for details. + +# Installing + +Currently, conda is required to manage installation of the enviornment. A fresh +installation of Anaconda3 or Miniconda3 is not required for each HCALDP release, +however. An existing conda installation may be used. The method described here +allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are now taken directly from PyPI or development repositories as +needed, so conda's ability to install hybrid conda/pip environments from a YAML +specification is used. This requires first downloading the specification file +and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment + +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/darktime/latest-linux.yml +$ conda env create -n caldp_darktime --file latest-linux.yml +``` + + +### Activate the pipeline environment + +``` +$ source activate caldp_darktime +``` + +Each new delivery iteration of the calibration environment will need to be +installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + |