diff options
author | Brendan Gannon <bgannon@stsci.edu> | 2022-11-14 13:06:16 -0500 |
---|---|---|
committer | Brendan Gannon <bgannon@stsci.edu> | 2022-11-14 13:06:16 -0500 |
commit | 501cdb5dbb39cb9bbc947bc563a3cb52f77290eb (patch) | |
tree | 39af577674dc5f3ad901edb61735f8c253c4fcc9 /caldp/test-freeze-pkgs/README.md | |
parent | 8161386334944fde27c5778ded6bde0e0d63c8b2 (diff) | |
download | astroconda-releases-rollback-codename.tar.gz |
rolling back changesrollback-codename
Diffstat (limited to 'caldp/test-freeze-pkgs/README.md')
-rw-r--r-- | caldp/test-freeze-pkgs/README.md | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/caldp/test-freeze-pkgs/README.md b/caldp/test-freeze-pkgs/README.md deleted file mode 100644 index 07cebec..0000000 --- a/caldp/test-freeze-pkgs/README.md +++ /dev/null @@ -1,49 +0,0 @@ -# Installing -Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is 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 taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification 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/test/latest-linux.yml -$ conda env create -n caldp_test --file latest-linux.yml -``` -### Activate the pipeline environment - -``` -$ source activate caldp_test -``` - -Each new delivery iteration of the calibration environmentwill 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 -``` |