aboutsummaryrefslogtreecommitdiff
path: root/jwstdp/1.13.0/README.md
diff options
context:
space:
mode:
authorNadia Dencheva <nadia.astropy@gmail.com>2023-12-15 15:03:14 -0500
committerGitHub <noreply@github.com>2023-12-15 15:03:14 -0500
commit34cdb96943bf6e2d23d68ea8b15f5c8326a1a856 (patch)
tree67ae7a2008aed724d3d4934c8a067a04cee7c95e /jwstdp/1.13.0/README.md
parent44925f1fc43434724a97b17d3a58d789b60ae80e (diff)
parent2de240e1934137c00ccd196ac0f03763ab88320a (diff)
downloadastroconda-releases-34cdb96943bf6e2d23d68ea8b15f5c8326a1a856.tar.gz
Merge pull request #156 from zacharyburnett/JWSTDP-1.13.0
JWSTDP-1.13.0
Diffstat (limited to 'jwstdp/1.13.0/README.md')
-rw-r--r--jwstdp/1.13.0/README.md74
1 files changed, 74 insertions, 0 deletions
diff --git a/jwstdp/1.13.0/README.md b/jwstdp/1.13.0/README.md
new file mode 100644
index 0000000..af04a6d
--- /dev/null
+++ b/jwstdp/1.13.0/README.md
@@ -0,0 +1,74 @@
+# 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-1.13.0 --file
+https://ssb.stsci.edu/releases/jwstdp/1.13.0/conda_python_stable-deps.txt
+```
+
+2) Activate the environment
+```
+$ source activate jwstdp-1.13.0
+```
+
+3) Install the pipeline software packages on top using `pip`:
+```
+$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.13.0/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-1.13.0 --file
+https://ssb.stsci.edu/releases/jwstdp/1.13.0/conda_python_macos-stable-deps.txt
+```
+
+2) Activate the environment
+```
+$ source activate jwstdp-1.13.0
+```
+
+3) Install the pipeline software packages on top using `pip`:
+```
+$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.13.0/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
+```