Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More

jwst

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jwst

Library for calibration of science observations from the James Webb Space Telescope


Maintainers
4

JWST Calibration Pipeline

Build Status codecov Documentation Status Powered by STScI Badge Powered by Astropy Badge DOI

STScI Logo

[!IMPORTANT] JWST requires a C compiler for dependencies and is currently limited to Python 3.10, 3.11, or 3.12.

[!NOTE] Linux and MacOS platforms are tested and supported. Windows is not currently supported.

[!WARNING] Installation on MacOS Mojave 10.14 will fail due to lack of a stable build for dependency opencv-python.

Installation

Please contact the JWST Help Desk for installation issues.

The easiest way to install the latest jwst release into a fresh virtualenv or conda environment is

pip install jwst

Detailed Installation

The jwst package can be installed into a virtualenv or conda environment via pip. We recommend that for each installation you start by creating a fresh environment that only has Python installed and then install the jwst package and its dependencies into that bare environment. If using conda environments, first make sure you have a recent version of Anaconda or Miniconda installed. If desired, you can create multiple environments to allow for switching between different versions of the jwst package (e.g. a released version versus the current development version).

In all cases, the installation is generally a 3-step process:

  • Create a conda environment
  • Activate that environment
  • Install the desired version of the jwst package into that environment

Details are given below on how to do this for different types of installations, including tagged releases, DMS builds used in operations, and development versions. Remember that all conda operations must be done from within a bash/zsh shell.

Installing latest releases

You can install the latest released version via pip. From a bash/zsh shell:

conda create -n <env_name> python=3.11
conda activate <env_name>
pip install jwst

You can also install a specific version:

conda create -n <env_name> python=3.11
conda activate <env_name>
pip install jwst==1.9.4

Installing the development version from Github

You can install the latest development version (not as well tested) from the Github master branch:

conda create -n <env_name> python=3.11
conda activate <env_name>
pip install git+https://github.com/spacetelescope/jwst

Installing a DMS Operational Build

There may be occasions where an exact copy of an operational DMS build is desired (e.g. for validation testing or debugging operational issues). We package releases for DMS builds via environment snapshots that specify the exact versions of all packages to be installed.

To install a particular DMS build, consult the Software vs DMS build version map table shown below to determine the correct jwst tag. For example, to install the version of jwst used in DMS build 9.0, use jwst tag 1.8.2. The overall procedure is similar to the 3-step process outlined in the previous section, but the details of each command vary, due to the use of environment snapshot files that specify all of the particular packages to install. Also note that different snapshot files are used for Linux and Mac OS systems.

Linux:

conda create -n jwstdp-1.12.5 --file https://ssb.stsci.edu/releases/jwstdp/1.12.5/conda_python_stable-deps.txt
conda activate jwstdp-1.12.5
pip install -r https://ssb.stsci.edu/releases/jwstdp/1.12.5/reqs_stable-deps.txt

MacOS:

conda create -n jwstdp-1.12.5 --file https://ssb.stsci.edu/releases/jwstdp/1.12.5/conda_python_macos-stable-deps.txt
conda activate jwstdp-1.12.5
pip install -r https://ssb.stsci.edu/releases/jwstdp/1.12.5/reqs_macos-stable-deps.txt

Each DMS delivery has its own installation instructions, which may be found in the corresponding release documentation linked from this page: https://github.com/astroconda/astroconda-releases/tree/master/jwstdp The installation procedures may change from time to time, so consulting the documentation page for the specific version in question is the best way to get that version installed.

Installing for Developers

If you want to be able to work on and test the source code with the jwst package, the high-level procedure to do this is to first create a conda environment using the same procedures outlined above, but then install your personal copy of the code overtop of the original code in that environment. Again, this should be done in a separate conda environment from any existing environments that you may have already installed with released versions of the jwst package.

As usual, the first two steps are to create and activate an environment:

conda create -n <env_name> python=3.11
conda activate <env_name>

To install your own copy of the code into that environment, you first need to fork and clone the jwst repo:

cd <where you want to put the repo>
git clone https://github.com/<your_github_username>/jwst.git
cd jwst

Note: python setup.py install and python setup.py develop commands do not work.

Install from your local checked-out copy as an "editable" install:

pip install -e .

If you want to run the unit or regression tests and/or build the docs, you can make sure those dependencies are installed too:

pip install -e ".[test]"
pip install -e ".[docs]"
pip install -e ".[test,docs]"

Need other useful packages in your development environment?

pip install ipython jupyter matplotlib pylint

Calibration References Data System (CRDS) Setup

Note: As of November 10, 2022, the process of deprecating the CRDS PUB Server will start. For details, refer to the CRDS PUB Server Freeze and Deprecation page

CRDS is the system that manages the reference files needed to run the pipeline. For details about CRDS, see the User's Guide

The JWST CRDS server is available at https://jwst-crds.stsci.edu

It supports the automatic processing pipeline at STScI. Inside the STScI network, the same server is used by the pipeline by default with no modifications. To run the pipeline outside the STScI network, CRDS must be configured by setting two environment variables:

export CRDS_PATH=<locally-accessable-path>/crds_cache/jwst_ops
export CRDS_SERVER_URL=https://jwst-crds.stsci.edu

<locally-accessable-path> can be any the user has permissions to use, such as $HOME. Expect to use upwards of 200GB of disk space to cache the latest couple of contexts.

To use a specific CRDS context, other than the current default, set the CRDS_CONTEXT environment variable:

export CRDS_CONTEXT=jwst_1179.pmap

Documentation

Documentation (built daily from the Github master branch) is available at:

https://jwst-pipeline.readthedocs.io/en/latest/

To build the docs yourself, clone this repository and build the documentation with:

pip install -e ".[docs]"
cd docs
make html
make latexpdf

Contributions and Feedback

We welcome contributions and feedback on the project. Please follow the contributing guidelines to submit an issue or a pull request.

We strive to provide a welcoming community to all of our users by abiding with the Code of Conduct.

If you have questions or concerns regarding the software, please open an issue at https://github.com/spacetelescope/jwst/issues or contact the JWST Help Desk.

Software vs DMS build version map

The table below provides information on each release of the jwst package and its relationship to software builds used in the STScI JWST DMS operations environment. The Released column gives the date on which the jwst tag was released on PyPi and the Ops Install column gives the date on which the build incorporating that release was installed in DMS operations. Note that the CRDS_CONTEXT listed is a minimum context that can be used with that release. A release should work with any contexts between the specified context and less than the context for the next release.

jwst tagDMS buildSDP_VERCRDS_CONTEXTReleasedOps InstallNotes
1.16.1B11.1rc2TBD12982024-11-12TBDFinal release candidate for B11.1
1.16.0B11.1rc1TBD12982024-09-20TBDFirst release candidate for B11.1
1.15.1B11.02024.2.212422024-07-082024-09-12Final release candidate for B11.0
1.15.0B11.0rc112412024-06-26First release candidate for B11.0
1.14.112382024-06-27PyPI-only release for external users
1.14.0B10.2.12024.1.112382024-03-292024-06-12Final release candidate for B10.2.1
1.13.411852024-01-25PyPI-only release for external users
1.13.3B10.12023.4.011812024-01-05Final release candidate for B10.1
1.13.2B10.1rc32023.4.011812023-12-21Third release candidate for B10.1
1.13.1B10.1rc22023.4.011812023-12-19Second release candidate for B10.1
1.13.0B10.1rc12023.4.011792023-12-15First release candidate for B10.1
1.12.5B10.0.12023.3.111662023-10-192023-12-05Patch release B10.0.1
1.12.42023-10-12Pinning dependencies for external users
1.12.3B10.02023.3.011352023-10-032023-12-05Final release candidate for B10.0
1.12.2B10.0rc311352023-10-02Third release candidate for B10.0
1.12.1B10.0rc211322023-09-26Second release candidate for B10.0
1.12.0B10.0rc111302023-09-18First release candidate for B10.0
1.11.4B9.3.12023.2.111072023-08-142023-08-24Final release for B9.3.1 patch
1.11.3B9.32023.2.010972023-07-17Final release candidate for B9.3
1.11.2B9.3rc310972023-07-12Third release candidate for B9.3
1.11.1B9.3rc210942023-06-29Second release candidate for B9.3
1.11.0B9.3rc110942023-06-21First release candidate for B9.3
1.10.210772023-04-14Pinning dependencies for external users
1.10.1B9.2.x2023.1.110772023-04-132023-05-23Final release candidate for B9.2
1.10.0B9.2rc110752023-03-31First release candidate for B9.2
1.9.6B9.1.22022.5.210682023-03-092023-03-15Final release candidate for B9.1.2
1.9.510612023-03-02First release candidate for B9.1.2
1.9.4B9.1.12022.5.110412023-01-272023-02-28Final release candidate for B9.1.1
1.9.3B9.12022.5.010302023-01-122023-02-28Final release candidate for B9.1
1.9.2B9.1rc22023-01-04Second release candidate for B9.1 (hotfix)
1.9.1B9.1rc22023-01-03Second release candidate for B9.1
1.9.0B9.1rc12022-12-27First release candidate for B9.1
1.8.5B9.010192022-12-12Documentation patch release for B9.0
1.8.4B9.02022-11-16Documentation patch release for B9.0
1.8.3B9.02022-11-11Documentation patch release for B9.0
1.8.2B9.02022.4.010172022-10-192022-11-17Final release candidate for B9.0
1.8.1B9.0rc22022-10-17Second release candidate for B9.0
1.8.0B9.0rc12022-10-10First release candidate for B9.0
1.7.2B8.1.22022.3.109842022-09-122022-09-21Final release candidate for B8.1.2
1.7.1B8.1.2rc22022-09-07Second release candidate for B8.1.2
1.7.0B8.1.2rc12022-09-01First release candidate for B8.1.2
1.6.2B8.12022.3.009532022-07-192022-08-19Final release candidate for B8.1
1.6.1B8.1rc22022-07-15Second release candidate for B8.1
1.6.0B8.1rc12022-07-11First release candidate for B8.1
1.5.3B8.0.12022.2.109132022-06-202022-06-30Patch release B8.0.1
1.5.2B8.02022.2.008742022-05-202022-06-16Final release candidate for B8.0
1.5.1B8.0rc22022-05-17Second release candidate for B8.0
1.5.0B8.0rc12022-05-05First release candidate for B8.0
1.4.6B7.9.32022.1.208002022-03-25Final release candidate for B7.9.3
1.4.5B7.9.3rc22022-03-23Second release candidate for B7.9.3
1.4.4B7.9.3rc12022-03-16First release candidate for B7.9.3
1.4.3B7.9.12022.1.108002022-02-03Final B7.9.1
1.4.2B7.92022.1.007972022-01-20Final release candidate for B7.9
1.4.1B7.9rc22022-01-15Second release candidate for B7.9
1.4.0B7.9rc12022-01-10First release candidate for B7.9
Pre-launch releases
1.3.3B7.8.22021.4.007642021-10-05Same as 1.3.2, but with installation bug fix
1.3.2B7.8.22021.4.007642021-09-03Final release candidate for B7.8.2
1.3.1B7.8.12021.3.007422021-08-09Final release candidate for B7.8.1
1.3.0B7.8.1rc107412021-08-02First release candidate for B7.8.1
1.2.3B7.82021.2.007322021-06-08Final release candidate for B7.8
1.2.2B7.8rc32021-06-08Third release candidate for B7.8
1.2.1B7.8rc22021-06-07Second release candidate for B7.8
1.2.0B7.8rc107232021-05-24First release candidate for B7.8
1.1.0B7.7.12021.1.006822021-02-26Final release candidate for B7.7.1
1.0.0B7.7.1rc106782021-02-22First release candidate for B7.7.1
0.18.3B7.72020.4.006702021-01-25Final release candidate for B7.7
0.18.2B7.7rc306682021-01-19Third release candidate for B7.7
0.18.1B7.7rc206642021-01-08Second release candidate for B7.7
0.18.0B7.7rc106452020-12-21First release candidate for B7.7
0.17.1B7.62020.3.006412020-09-15Final release candidate for B7.6
0.17.0B7.6rc106372020-08-28First release candidate for B7.6
0.16.2B7.52020.2.006192020-06-10Same as 0.16.1, but with installation bug fix
0.16.1B7.52020.2.006192020-05-19Final release candidate for B7.5
0.16.0B7.5rc106142020-05-04First release candidate for B7.5
0.15.1B7.4.22020.1.005862020-03-10Final release candidate for B7.4.2
0.15.0B7.4.2rc105852020-02-28First release candidate for B7.4.2
0.14.2B7.42019.3.005702019-11-18Final release candidate for B7.4
0.14.1B7.4rc205682019-11-11Second release candidate for B7.4
0.14.0B7.4rc105632019-10-25First release candidate for B7.4
0.13.8B7.3.12019.2.005412019-09-05Patch for Build 7.3 released as Build 7.3.1
0.13.7B7.32019.1.005352019-06-21Final release candidate for Build 7.3
0.13.6B7.3rc405342019-06-20Fourth release candidate for Build 7.3
0.13.5B7.3rc305342019-06-19Third release candidate for Build 7.3
0.13.4B7.3rc205342019-06-18Second release candidate for Build 7.3
0.13.3B7.3rc105322019-06-04First release candidate for Build 7.3
0.13.205002019-05-14DMS test, no delivery to I&T
0.13.105002019-03-08DMS test, no delivery to I&T
0.13.005002019-02-15DMS test, no delivery to I&T
0.12.3B7.2.105002019-01-15DMS Build 7.2.1 patch release
0.12.2B7.22018_204952018-11-07Final release candidate for Build 7.2
0.12.1B7.2rc204952018-11-01Second release candidate for Build 7.2
0.12.0B7.2rc104932018-10-09First release candidate for Build 7.2
0.11.004822018-09-10DMS test, no delivery to I&T
0.10.004772018-07-31DMS test, no delivery to I&T
0.9.6B7.1.32018_104682018-06-08Final release candidate for Build 7.1.3
0.9.5B7.1.3rc304682018-06-06Third release candidate for Build 7.1.3
0.9.4B7.1.3rc204632018-05-29Second release candidate for Build 7.1.3
0.9.3B7.1.3rc104572018-05-11First release candidate for Build 7.1.3
0.9.204412018-03-28DMS test, no delivery to I&T
0.9.104322018-02-16DMS test, no delivery to I&T
0.9.0B7.1.204222017-12-22DMS patch release to I&T 2018-02-15
0.8.0B7.1.104222017-11-06DMS patch release to I&T 2018-01-17
0.8.0B7.12017_104222017-11-06Final release for Build 7.1
0.7.7B7.02016_203032016-12-13Final release for Build 7.0

Unit Tests

Unit tests can be run via pytest. Within the top level of your local jwst repo checkout:

pip install -e ".[test]"
pytest

Need to parallelize your test runs over all available cores?

pip install pytest-xdist
pytest -n auto

Regression Tests

Latest regression test results can be found here (STScI staff only):

https://plwishmaster.stsci.edu:8081/job/RT/job/JWST/

The test builds start at 6pm local Baltimore time Monday through Saturday on jwcalibdev.

To run the regression tests on your local machine, get the test dependencies and set the environment variable TEST_BIGDATA to our Artifactory server (STSci staff members only):

pip install -e ".[test]"
export TEST_BIGDATA=https://bytesalad.stsci.edu/artifactory

To run all the regression tests (except the very slow ones):

pytest --bigdata jwst/regtest

You can control where the test results are written with the --basetemp=<PATH> arg to pytest. NOTE that pytest will wipe this directory clean for each test session, so make sure it is a scratch area.

If you would like to run a specific test, find its name or ID and use the -k option:

pytest --bigdata jwst/regtest -k nirspec

If developers need to update the truth files in our nightly regression tests, there are instructions in the repository wiki.

https://github.com/spacetelescope/jwst/wiki/Maintaining-Regression-Tests

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts