diff options
author | Matt Rendina <mrendina@stsci.edu> | 2019-10-25 14:32:31 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2019-10-25 14:32:31 -0400 |
commit | 050779ea4f126a57c304bba05392da1b0fba62b0 (patch) | |
tree | 19ade7cfcd3d56325e5dc57ea41ca2dc33e9e513 /jwstdp/0.14.0/README.md | |
parent | 300da1e4f4a378c68b04002e1a20b2cb67240433 (diff) | |
download | astroconda-releases-testing-050779ea4f126a57c304bba05392da1b0fba62b0.tar.gz |
JWSTDP-0.14.0
Diffstat (limited to 'jwstdp/0.14.0/README.md')
-rw-r--r-- | jwstdp/0.14.0/README.md | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/jwstdp/0.14.0/README.md b/jwstdp/0.14.0/README.md new file mode 100644 index 0000000..7ead97e --- /dev/null +++ b/jwstdp/0.14.0/README.md @@ -0,0 +1,47 @@ +The delivery process and artifacts have changed with 0.14.0. Please read below for the new installation procedure. + +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, see '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. + +To reproduce the environment used during JWST prerelease testing, 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.0 --file https://ssb.stsci.edu/releases/jwstdp/0.14.0/conda_env_dump_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.14.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.14.0/reqs_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-4.7.10-Linux-x86_64.sh +$ bash Miniconda3-4.7.10-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 +``` |