From d8dd1b92ef1f1bc01d5c249585f007763af34350 Mon Sep 17 00:00:00 2001 From: Larry Bradley Date: Fri, 24 Sep 2021 11:04:45 -0400 Subject: Add DE Build E environments --- de/e/README.md | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 de/e/README.md (limited to 'de/e/README.md') diff --git a/de/e/README.md b/de/e/README.md new file mode 100644 index 0000000..e0c3ec8 --- /dev/null +++ b/de/e/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each DE release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda env create -n de-e --file http://ssb.stsci.edu/releases/de/e/latest-linux.yml +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda env update -n de-e --file http://ssb.stsci.edu/releases/de/e/latest-linux.yml +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.10.3-Linux-x86_64.sh +$ bash Miniconda3-py37_4.10.3-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For 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 +``` + +## Install the environment + +``` +$ conda env create -n de-e --file http://ssb.stsci.edu/releases/de/e/latest-linux.yml +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the environment + +``` +$ source activate de-e +``` -- cgit