diff options
author | Automated <automated@example.com> | 2022-03-25 15:19:34 -0400 |
---|---|---|
committer | Automated <automated@example.com> | 2022-03-25 15:19:34 -0400 |
commit | 073eea8f843fd20f0ad756453e673d886f58fd4d (patch) | |
tree | 86fbe0d14ad8cc7513be6b1f3982ec95d5ecdd67 | |
parent | c0ebb391ba8c3a9a01ddad255083fe4d657c40bf (diff) | |
download | astroconda-releases-073eea8f843fd20f0ad756453e673d886f58fd4d.tar.gz |
JWSTDP-1.4.6
-rw-r--r-- | jwstdp/1.4.6/README.md | 74 | ||||
-rw-r--r-- | jwstdp/1.4.6/conda_python_macos-stable-deps.txt | 21 | ||||
-rw-r--r-- | jwstdp/1.4.6/conda_python_stable-deps.txt | 26 | ||||
-rw-r--r-- | jwstdp/1.4.6/reqs_macos-stable-deps.txt | 68 | ||||
-rw-r--r-- | jwstdp/1.4.6/reqs_stable-deps.txt | 95 |
5 files changed, 284 insertions, 0 deletions
diff --git a/jwstdp/1.4.6/README.md b/jwstdp/1.4.6/README.md new file mode 100644 index 0000000..acb7582 --- /dev/null +++ b/jwstdp/1.4.6/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.4.6 --file +https://ssb.stsci.edu/releases/jwstdp/1.4.6/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.4.6 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.4.6/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.4.6 --file +https://ssb.stsci.edu/releases/jwstdp/1.4.6/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.4.6 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.4.6/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/1.4.6/conda_python_macos-stable-deps.txt b/jwstdp/1.4.6/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..609a657 --- /dev/null +++ b/jwstdp/1.4.6/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.10.1 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2022.3.18-hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-12.0.0-h2f01273_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.3-hca72f7f_2.conda +https://repo.anaconda.com/pkgs/main/noarch/tzdata-2021e-hda174b7_0.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-h4dc903c_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1n-hca72f7f_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.1.2-hca72f7f_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.11-h7bc2e8c_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.37.2-h707629a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.9.7-h88f2d9e_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2021.10.8-py39hecd8cb5_2.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.37.1-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-58.0.4-py39hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-21.2.4-py39hecd8cb5_0.conda diff --git a/jwstdp/1.4.6/conda_python_stable-deps.txt b/jwstdp/1.4.6/conda_python_stable-deps.txt new file mode 100644 index 0000000..8fc2e92 --- /dev/null +++ b/jwstdp/1.4.6/conda_python_stable-deps.txt @@ -0,0 +1,26 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.10.1 +@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-2022.3.18-h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.35.1-h7274673_9.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.3.0-hd4cf53a_17.conda +https://repo.anaconda.com/pkgs/main/noarch/tzdata-2021e-hda174b7_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgomp-9.3.0-h5101ec6_17.conda +https://repo.anaconda.com/pkgs/main/linux-64/_openmp_mutex-4.5-1_gnu.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.3.0-h5101ec6_17.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.3-h7f8727e_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1n-h7f8727e_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-h7f8727e_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.1.2-h7f8727e_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.11-h1ccaba5_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.38.0-hc218d9a_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.9.7-h12debd9_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2021.10.8-py39h06a4308_2.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.37.1-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-58.0.4-py39h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-21.2.4-py39h06a4308_0.conda diff --git a/jwstdp/1.4.6/reqs_macos-stable-deps.txt b/jwstdp/1.4.6/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..d34677d --- /dev/null +++ b/jwstdp/1.4.6/reqs_macos-stable-deps.txt @@ -0,0 +1,68 @@ +asdf==2.8.3 +asdf-astropy==0.1.2 +asdf-coordinates-schemas==0.1.0 +asdf-transform-schemas==0.2.0 +asdf-wcs-schemas==0.1.1 +astropy==5.0 +attrs==21.4.0 +BayesicFitting==2.8.1 +certifi==2021.10.8 +charset-normalizer==2.0.10 +ci-watson==0.5 +codecov==2.1.12 +colorama==0.4.4 +coverage==6.2 +crds==11.6.0 +cycler==0.11.0 +drizzle==1.13.4 +filelock==3.4.2 +flake8==4.0.1 +fonttools==4.28.5 +future==0.18.2 +getch==1.0 +gwcs==0.18.0 +idna==3.3 +iniconfig==1.1.1 +jmespath==0.10.0 +jsonschema==3.2.0 +jwst==1.4.6 +kiwisolver==1.3.2 +lxml==4.7.1 +matplotlib==3.5.1 +mccabe==0.6.1 +numpy==1.22.1 +packaging==21.3 +Parsley==1.3 +photutils==1.3.0 +Pillow==9.0.0 +pluggy==1.0.0 +poppy==1.0.1 +psutil==5.9.0 +py==1.11.0 +pycodestyle==2.8.0 +pyerfa==2.0.0.1 +pyflakes==2.4.0 +pyparsing==3.0.6 +pyrsistent==0.18.1 +pytest==6.2.5 +pytest-cov==3.0.0 +pytest-doctestplus==0.11.2 +pytest-openfiles==0.5.0 +python-dateutil==2.8.2 +PyYAML==6.0 +requests==2.27.1 +requests-mock==1.9.3 +scipy==1.7.3 +semantic-version==2.8.5 +six==1.16.0 +spherical-geometry==1.2.22 +stcal==0.6.0 +stdatamodels==0.4.0 +stpipe==0.3.1 +stsci.image==2.3.5 +stsci.imagestats==1.6.3 +stsci.stimage==0.2.5 +toml==0.10.2 +tomli==2.0.0 +tweakwcs==0.7.3 +urllib3==1.26.8 diff --git a/jwstdp/1.4.6/reqs_stable-deps.txt b/jwstdp/1.4.6/reqs_stable-deps.txt new file mode 100644 index 0000000..5131832 --- /dev/null +++ b/jwstdp/1.4.6/reqs_stable-deps.txt @@ -0,0 +1,95 @@ +alabaster==0.7.12 +asdf==2.8.3 +asdf-astropy==0.1.2 +asdf-coordinates-schemas==0.1.0 +asdf-transform-schemas==0.2.0 +asdf-wcs-schemas==0.1.1 +astropy==5.0 +attrs==21.4.0 +Babel==2.9.1 +BayesicFitting==2.8.1 +certifi==2021.10.8 +charset-normalizer==2.0.10 +ci-watson==0.5 +codecov==2.1.12 +colorama==0.4.4 +coverage==6.2 +crds==11.6.0 +cycler==0.11.0 +docutils==0.17.1 +drizzle==1.13.4 +et-xmlfile==1.1.0 +execnet==1.9.0 +filelock==3.4.2 +flake8==4.0.1 +fonttools==4.28.5 +future==0.18.2 +getch==1.0 +gwcs==0.18.0 +idna==3.3 +imagesize==1.3.0 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +Jinja2==3.1.0 +jmespath==0.10.0 +jplephem==2.17 +jsonschema==3.2.0 +jwst==1.4.6 +kiwisolver==1.3.2 +lxml==4.7.1 +MarkupSafe==2.1.1 +matplotlib==3.5.1 +mccabe==0.6.1 +numpy==1.22.1 +numpydoc==1.2 +openpyxl==3.0.9 +packaging==21.3 +Parsley==1.3 +photutils==1.3.0 +Pillow==9.0.0 +pluggy==1.0.0 +poppy==1.0.1 +psutil==5.9.0 +py==1.11.0 +pycodestyle==2.8.0 +pyerfa==2.0.0.1 +pyflakes==2.4.0 +Pygments==2.11.2 +pymssql==2.2.4 +pyparsing==3.0.6 +pyrsistent==0.18.1 +pysiaf==0.15.0 +pytest==6.2.5 +pytest-cov==3.0.0 +pytest-doctestplus==0.11.2 +pytest-forked==1.4.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.5.0 +python-dateutil==2.8.2 +pytz==2022.1 +PyYAML==6.0 +requests==2.27.1 +requests-mock==1.9.3 +scipy==1.7.3 +semantic-version==2.8.5 +six==1.16.0 +snowballstemmer==2.2.0 +spherical-geometry==1.2.22 +Sphinx==4.4.0 +sphinxcontrib-applehelp==1.0.2 +sphinxcontrib-devhelp==1.0.2 +sphinxcontrib-htmlhelp==2.0.0 +sphinxcontrib-jsmath==1.0.1 +sphinxcontrib-qthelp==1.0.3 +sphinxcontrib-serializinghtml==1.1.5 +stcal==0.6.0 +stdatamodels==0.4.0 +stpipe==0.3.1 +stsci.image==2.3.5 +stsci.imagestats==1.6.3 +stsci.stimage==0.2.5 +toml==0.10.2 +tomli==2.0.0 +tweakwcs==0.7.3 +urllib3==1.26.8 +zipp==3.7.0 |