diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2018-11-07 10:02:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-07 10:02:02 -0500 |
commit | 442bedce3d18c5eb5bcb9d716088e5333dfc4b53 (patch) | |
tree | fd0d884a8ebc81f6cde7e76aacff91bc8634ab55 /jwstdp/0.12.2/README.md | |
parent | 2d4c0df0eaeb3ac5c679cf82b42ad5fadd3c908f (diff) | |
parent | 80ec6cc166365c17a140aeea0cbe79017b0ae43b (diff) | |
download | astroconda-releases-testing-442bedce3d18c5eb5bcb9d716088e5333dfc4b53.tar.gz |
Merge pull request #45 from rendinam/JWSTDP-0.12.2
JWSTDP-0.12.2
Diffstat (limited to 'jwstdp/0.12.2/README.md')
-rw-r--r-- | jwstdp/0.12.2/README.md | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/jwstdp/0.12.2/README.md b/jwstdp/0.12.2/README.md new file mode 100644 index 0000000..724e411 --- /dev/null +++ b/jwstdp/0.12.2/README.md @@ -0,0 +1,54 @@ + +# 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.12.2 --file http://ssb.stsci.edu/releases/jwstdp/0.12.2/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.12.2 --file http://ssb.stsci.edu/releases/jwstdp/0.12.2/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.2.0-Linux-x86_64.sh +$ bash Anaconda3-5.2.0-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 jwstdp-0.12.2 --file http://ssb.stsci.edu/releases/jwstdp/0.12.2/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.12.2 +``` |