From 2a5d930c15ef447d06797af036667da4a8cb913d Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Thu, 26 Sep 2019 14:22:40 -0400 Subject: DE-A build --- de/a/README.md | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 de/a/README.md (limited to 'de/a/README.md') diff --git a/de/a/README.md b/de/a/README.md new file mode 100644 index 0000000..15d765e --- /dev/null +++ b/de/a/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 create -n de-a --file http://ssb.stsci.edu/releases/de/a/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n de-a --file http://ssb.stsci.edu/releases/de/a/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-2019.07-Linux-x86_64.sh +$ bash Anaconda3-2019.07-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.7.10-Linux-x86_64.sh +$ bash Miniconda3-4.7.10-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 From 73e94d1063b01e6e52bc65d83c673dde5d93b42b Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Thu, 26 Sep 2019 14:35:39 -0400 Subject: Fix env name --- de/a/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'de/a/README.md') diff --git a/de/a/README.md b/de/a/README.md index 15d765e..b2c8b26 100644 --- a/de/a/README.md +++ b/de/a/README.md @@ -34,10 +34,10 @@ $ bash Miniconda3-4.7.10-Linux-x86_64.sh $ export PATH=$HOME/miniconda3/bin:$PATH ``` -## Install the pipeline +## Install the environment ``` -$ conda create -n da-5 --file http://ssb.stsci.edu/releases/da/5/latest-linux +$ conda create -n de-a --file http://ssb.stsci.edu/releases/de/a/latest-linux ``` ## Enter a BASH shell @@ -46,8 +46,8 @@ $ conda create -n da-5 --file http://ssb.stsci.edu/releases/da/5/latest-linux $ bash ``` -## Activate the pipeline environment +## Activate the environment ``` -$ source activate da-5 +$ source activate de-a ``` -- cgit