diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2020-05-06 14:07:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 14:07:46 -0400 |
commit | dc46e91e276f63c194eedf4dce5847894f019940 (patch) | |
tree | 3c6c0af5dc0a6b405abf79f34066763588748c18 /caldp/20200302/README.md | |
parent | 81f9c7dc73d7efb28ab66538130add914841de18 (diff) | |
download | astroconda-releases-dc46e91e276f63c194eedf4dce5847894f019940.tar.gz |
Remove aborted 20200302 delivery cycle (#125)
Diffstat (limited to 'caldp/20200302/README.md')
-rw-r--r-- | caldp/20200302/README.md | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/caldp/20200302/README.md b/caldp/20200302/README.md deleted file mode 100644 index 8926545..0000000 --- a/caldp/20200302/README.md +++ /dev/null @@ -1,63 +0,0 @@ -NOTE: This release introduces some 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/20200302/latest-linux.yml -$ conda env create -n caldp_20200302 --file latest-linux.yml -``` - - -### Activate the pipeline environment - -``` -$ source activate caldp_20200302 -``` - -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.continuum.io/miniconda/Miniconda3-4.7.12-Linux-x86_64.sh -$ bash Miniconda3-4.7.12-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 -``` - |