Requirements & Installation¶
Note
This is entirely optional, but you may wish to sign up to the mailing list webbpsf-users@maillist.stsci.edu
. This is a very low-traffic moderated announce-only list, to which we will periodically post announcements of updates to this software.
To subscribe, visit the maillist.stsci.edu server
Installing with pip¶
WebbPSF and its underlying optical library POPPY may be installed from the Python Package Index in the usual manner for Python packages.
$ pip install --upgrade webbpsf
[... progress report ...]
Successfully installed webbpsf
Note that pip install webbpsf
only installs the program code. If you install via pip, you must manually download and install the data files, as described below.
To obtain source spectra for calculations, you should also follow installation instructions for synphot.
Note
Installation through conda is not available as of WebbPSF version 1.1.0. Conda users should instead follow the insructions in the preceding section to install via pip.
Installing or updating synphot¶
Stsynphot is an optional dependency, but is highly recommended. Its installation instructions can be found in the synphot docs or a discussion in the POPPY docs.
Installing the Required Data Files¶
If you install via pip or manually, you must install the data files yourself.
Files containing such information as the JWST pupil shape, instrument throughputs, and aperture positions are distributed separately from WebbPSF. To run WebbPSF, you must download these files and tell WebbPSF where to find them using the WEBBPSF_PATH
environment variable.
Download the following file: webbpsf-data-1.1.1.tar.gz [approx. 80 MB]
Untar
webbpsf-data-1.1.1.tar.gz
into a directory of your choosing.Set the environment variable
WEBBPSF_PATH
to point to that directory. e.g.export WEBBPSF_PATH=$HOME/data/webbpsf-data
for bash. (You will probably want to add this to your .bashrc
.)
You should now be able to successfully import webbpsf
in a Python session.
Warning
If you have previously installed the data files for an earlier version of WebbPSF, and then update to a newer version, the software may prompt you that you must download and install a new updated version of the data files.
Note
For STScI Users Only: Users at STScI may access the required data files from the Central Storage network. Set the following environment variables in your bash
shell. (You will probably want to add this to your .bashrc
.)
export WEBBPSF_PATH="/grp/jwst/ote/webbpsf-data"
export PYSYN_CDBS="/grp/hst/cdbs"
Software Requirements¶
See the requirements.txt specification file for the required package dependencies.
Required Python version: WebbPSF 1.1 and above require Python 3.8 or higher.
The major dependencies are the standard NumPy, SciPy, matplotlib stack, and Astropy.
Recommended Python packages:
synphot enables the simulation of PSFs with proper spectral response to realistic source spectra. Without this, PSF fidelity is reduced. See above for installation instructions for synphot. Stsynphot is recommended for most users.
Optional Python packages:
Some calculations with POPPY can benefit from the optional packages psutil and pyFFTW, but these are not needed in general. See the POPPY installation docs for more details. These optional packages are only worth adding for speed improvements if you are spending substantial time running calculations.
Additional packages are needed for the optional use of GPUs to accelerate calculations. See the POPPY documentation.
Installing a pre-release version or contributing to WebbPSF development¶
The WebbPSF source code repository is hosted at GitHub, as is the repository for POPPY. Users may clone or fork in the usual manner. Pull requests with code enhancements welcomed.
To install the current development version of WebbPSF, you can use pip
to install directly from a git
repository. To install WebbPSF and POPPY from git
, uninstall any existing copies of WebbPSF and POPPY, then invoke pip as follows:
$ pip install -e git+https://github.com/spacetelescope/poppy.git#egg=poppy \
-e git+https://github.com/spacetelescope/webbpsf.git#egg=webbpsf
This will create directories ./src/poppy
and ./src/webbpsf
in your current directory containing the cloned repository. If you have commit access to the repository, you may want to clone via ssh with a URL like git+ssh://git@github.com:spacetelescope/webbpsf.git
. Documentation of the available options for installing directly from Git can be found in the pip documentation.
Remember to install the required data files, if you have not already installed them.