From 6ae9df8a33018e3575951a07776626e8f11afc1c Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Fri, 22 Dec 2017 11:24:02 -0500 Subject: Add JWSTDP 0.9.0 --- jwstdp/0.9.x/README.md | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 jwstdp/0.9.x/README.md (limited to 'jwstdp/0.9.x/README.md') diff --git a/jwstdp/0.9.x/README.md b/jwstdp/0.9.x/README.md new file mode 100644 index 0000000..785794b --- /dev/null +++ b/jwstdp/0.9.x/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.9.0 --file http://ssb.stsci.edu/releases/jwstdp/0.9.0/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.9.0 --file http://ssb.stsci.edu/releases/jwstdp/0.9.0/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-4.3.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.11-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 jwstdp-0.9.0 --file http://ssb.stsci.edu/releases/jwstdp/0.9.0/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.9.0 +``` -- cgit From ebc1b07d07f50be1a3abdee776d2bbb4d4be3667 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Fri, 22 Dec 2017 11:32:34 -0500 Subject: Correct conda installation commands --- jwstdp/0.9.x/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'jwstdp/0.9.x/README.md') diff --git a/jwstdp/0.9.x/README.md b/jwstdp/0.9.x/README.md index 785794b..02ff91e 100644 --- a/jwstdp/0.9.x/README.md +++ b/jwstdp/0.9.x/README.md @@ -21,7 +21,7 @@ For detailed instructions of this step, please visit: http://docs.continuum.io/a **For Anaconda:** ``` -$ wget https://repo.continuum.io/archive/Anaconda3-4.3.1-Linux-x86_64.sh +$ 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 ``` @@ -29,7 +29,7 @@ $ export PATH=$HOME/anaconda3/bin:$PATH **For Miniconda (if preferred):** ``` -$ wget https://repo.continuum.io/miniconda/Miniconda3-4.3.11-Linux-x86_64.sh +$ 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 ``` -- cgit From 20be97ad41da66e82bbe8b936691d89d2b259b3d Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Fri, 22 Dec 2017 11:38:21 -0500 Subject: Correct paths --- jwstdp/0.9.x/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'jwstdp/0.9.x/README.md') diff --git a/jwstdp/0.9.x/README.md b/jwstdp/0.9.x/README.md index 02ff91e..fa510e6 100644 --- a/jwstdp/0.9.x/README.md +++ b/jwstdp/0.9.x/README.md @@ -5,13 +5,13 @@ A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP For existing Anaconda3 or Miniconda3 installations: ``` -$ conda create -n jwstdp-0.9.0 --file http://ssb.stsci.edu/releases/jwstdp/0.9.0/latest-linux +$ conda create -n jwstdp-0.9.0 --file http://ssb.stsci.edu/releases/jwstdp/0.9.x/latest-linux ``` As bugfixes are announced your current pipeline software may be updated by issuing the command: ``` -$ conda update -n jwstdp-0.9.0 --file http://ssb.stsci.edu/releases/jwstdp/0.9.0/latest-linux +$ conda update -n jwstdp-0.9.0 --file http://ssb.stsci.edu/releases/jwstdp/0.9.x/latest-linux ``` # Installing From Scratch @@ -37,7 +37,7 @@ $ export PATH=$HOME/miniconda3/bin:$PATH ## Install the pipeline ``` -$ conda create -n jwstdp-0.9.0 --file http://ssb.stsci.edu/releases/jwstdp/0.9.0/latest-linux +$ conda create -n jwstdp-0.9.0 --file http://ssb.stsci.edu/releases/jwstdp/0.9.x/latest-linux ``` ## Enter a BASH shell -- cgit