From 204b71d6f332d024131d9e3759906d5f0ac356d4 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Thu, 20 Dec 2018 12:05:14 -0500 Subject: Add DA5 and cubeviz environment spec files. (#46) * Add DA5 and cubeviz environment spec files. * Get correct glue-core version from main channel. --- da/5/README.md | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 da/5/README.md (limited to 'da/5/README.md') diff --git a/da/5/README.md b/da/5/README.md new file mode 100644 index 0000000..aa21789 --- /dev/null +++ b/da/5/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-5 --file http://ssb.stsci.edu/releases/da/5/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n da-5 --file http://ssb.stsci.edu/releases/da/5/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.3.1-Linux-x86_64.sh +$ bash Anaconda3-5.3.1-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.11-Linux-x86_64.sh +$ bash Miniconda3-4.5.11-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n da-5 --file http://ssb.stsci.edu/releases/da/5/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate da-5 +``` -- cgit