diff options
author | Automated <automated@example.com> | 2020-09-15 18:32:20 -0400 |
---|---|---|
committer | Automated <automated@example.com> | 2020-09-15 18:32:20 -0400 |
commit | f5c83226725a1ffc9c99f4eade828951b9acae9f (patch) | |
tree | e991f0e0bc45251c2c9b14777a1700c6e8373c3a | |
parent | f0e44cf6622cdb01f9d5399088b58440c783d6f6 (diff) | |
download | astroconda-releases-f5c83226725a1ffc9c99f4eade828951b9acae9f.tar.gz |
JWSTDP-0.17.1
-rw-r--r-- | jwstdp/0.17.1/README.md | 74 | ||||
-rw-r--r-- | jwstdp/0.17.1/conda_python_macos-stable-deps.txt | 21 | ||||
-rw-r--r-- | jwstdp/0.17.1/conda_python_stable-deps.txt | 24 | ||||
-rw-r--r-- | jwstdp/0.17.1/reqs_macos-stable-deps.txt | 50 | ||||
-rw-r--r-- | jwstdp/0.17.1/reqs_stable-deps.txt | 58 |
5 files changed, 227 insertions, 0 deletions
diff --git a/jwstdp/0.17.1/README.md b/jwstdp/0.17.1/README.md new file mode 100644 index 0000000..88d40fc --- /dev/null +++ b/jwstdp/0.17.1/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-0.17.1 --file +https://ssb.stsci.edu/releases/jwstdp/0.17.1/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.17.1 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.17.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.17.1 --file +https://ssb.stsci.edu/releases/jwstdp/0.17.1/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.17.1 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.17.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 +``` diff --git a/jwstdp/0.17.1/conda_python_macos-stable-deps.txt b/jwstdp/0.17.1/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..a71eb5b --- /dev/null +++ b/jwstdp/0.17.1/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.7.22-0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1g-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20191231-h1de35cc_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.33.0-hffcf06c_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.5-h26836e1_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.6.20-py38_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.35.1-py_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-49.6.0-py38_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.2.2-py38_0.conda diff --git a/jwstdp/0.17.1/conda_python_stable-deps.txt b/jwstdp/0.17.1/conda_python_stable-deps.txt new file mode 100644 index 0000000..026d397 --- /dev/null +++ b/jwstdp/0.17.1/conda_python_stable-deps.txt @@ -0,0 +1,24 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.7.22-0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1g-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20191231-h14c3975_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.33.0-h62c20be_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.5-h7579374_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.6.20-py38_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.35.1-py_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-49.6.0-py38_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.2.2-py38_0.conda diff --git a/jwstdp/0.17.1/reqs_macos-stable-deps.txt b/jwstdp/0.17.1/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..1e00013 --- /dev/null +++ b/jwstdp/0.17.1/reqs_macos-stable-deps.txt @@ -0,0 +1,50 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.0.1.post1 +attrs==19.3.0 +certifi==2020.6.20 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.8 +coverage==5.2.1 +crds==7.6.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +gwcs==0.14.0 +idna==2.10 +importlib-metadata==1.7.0 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.17.1 +lxml==4.5.2 +more-itertools==8.4.0 +numpy==1.19.1 +packaging==20.4 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.2 +py==1.9.0 +pyparsing==2.4.7 +pyrsistent==0.16.0 +pytest==5.4.3 +pytest-cov==2.10.0 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==1.34.0 +PyYAML==5.3.1 +requests==2.24.0 +requests-mock==1.8.0 +scipy==1.5.2 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.6.4 +urllib3==1.25.10 +wcwidth==0.2.5 +zipp==3.1.0 diff --git a/jwstdp/0.17.1/reqs_stable-deps.txt b/jwstdp/0.17.1/reqs_stable-deps.txt new file mode 100644 index 0000000..8bfeabc --- /dev/null +++ b/jwstdp/0.17.1/reqs_stable-deps.txt @@ -0,0 +1,58 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.0.1.post1 +attrs==19.3.0 +certifi==2020.6.20 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.8 +coverage==5.2.1 +crds==7.6.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +flake8==3.8.3 +gwcs==0.14.0 +idna==2.10 +importlib-metadata==1.7.0 +jplephem==2.9 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.17.1 +lxml==4.5.2 +mccabe==0.6.1 +more-itertools==8.4.0 +numpy==1.19.1 +packaging==20.4 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.2 +py==1.9.0 +pycodestyle==2.6.0 +pyflakes==2.2.0 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.16.0 +pytest==5.4.3 +pytest-cov==2.10.0 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-sugar==0.9.4 +pytest-xdist==1.34.0 +PyYAML==5.3.1 +requests==2.24.0 +requests-mock==1.8.0 +scipy==1.5.2 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +termcolor==1.1.0 +tweakwcs==0.6.4 +urllib3==1.25.10 +wcwidth==0.2.5 +zipp==3.1.0 |