From 5a2047eeb41e47c73cf64359b26ab17f8a0d2736 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 22 Dec 2017 15:59:33 -0500 Subject: Add DA-4 --- da/4/README.md | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 da/4/README.md (limited to 'da/4/README.md') diff --git a/da/4/README.md b/da/4/README.md new file mode 100644 index 0000000..86ea03e --- /dev/null +++ b/da/4/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each DA release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n da-4 --file http://ssb.stsci.edu/releases/da/4/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n da-4 --file http://ssb.stsci.edu/releases/da/4/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh +$ bash Anaconda3-5.0.1-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.3.30-Linux-x86_64.sh +$ bash Miniconda3-4.3.30-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n da-4 --file http://ssb.stsci.edu/releases/da/4/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate da-4 +``` -- cgit