diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2019-11-12 09:06:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-12 09:06:58 -0500 |
commit | babf45afe64bdc1be4f2cd9eca3bf39e82032690 (patch) | |
tree | 5fc6dd2c81f14a6085bbce6e4e1c06158b9a1c07 /jwstdp/0.14.1/README.md | |
parent | 8c181859ffbe02908f2e72fca81dd322c8f6c4a1 (diff) | |
download | astroconda-releases-testing-babf45afe64bdc1be4f2cd9eca3bf39e82032690.tar.gz |
JWSTDP-0.14.1 (#99)
Diffstat (limited to 'jwstdp/0.14.1/README.md')
-rw-r--r-- | jwstdp/0.14.1/README.md | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/jwstdp/0.14.1/README.md b/jwstdp/0.14.1/README.md new file mode 100644 index 0000000..dee8f24 --- /dev/null +++ b/jwstdp/0.14.1/README.md @@ -0,0 +1,76 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +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. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.14.1 --file +https://ssb.stsci.edu/releases/jwtdp/0.14.1/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.14.1 +``` + +3) Install the pipeline software packages on top using `pip`: + ``` + $ pip install -r +https://ssb.stsci.edu/releases/jwstdp/0.14.1/reqs_stable-deps.txt + ``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.14.1 --file +https://ssb.stsci.edu/releases/jwtdp/0.14.1/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.14.1 +``` + +3) Install the pipeline software packages on top using `pip`: + ``` + $ pip install -r +https://ssb.stsci.edu/releases/jwstdp/0.14.1/reqs_macos-stable-deps.txt + ``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` |