Development documentation · 0.2.3 30c2f8ba · Intro examples tested with 0.2.3 · Version details · Known limitations

Installation Guide#

Note

GWexpy 0.2.3 is available from both PyPI and conda-forge. Check PyPI, conda-forge, or the release page for available versions.

GWexpy supports Python 3.11 or later. You can choose from several installation options (extras) depending on your analysis goals.

Install Commands#

Goal

Installation Command

Features

Minimal

pip install gwexpy

Numerical containers and basic arithmetic. Minimal dependencies.

Recommended

pip install "gwexpy[analysis,fitting,plotting]"

Advanced statistics, curve fitting, and mapping features.

GW Analysis

pip install "gwexpy[gw,io]"

Frame file support and official GW tools (NDS2 requires the Conda step below).

Dev / Full

pip install "gwexpy[all]"

Enables declared non-GUI optional features.

1. Installation Steps#

Minimal#

For users who want to keep dependencies minimal and only use core containers like ScalarField.

  • Purpose: verify import and core container usage with the smallest dependency set

  • Input: Python 3.11+ and pip

  • Output: a minimal GWexpy environment

If you need NDS2, FrameLIB, pygmt, or other binary-heavy tools, skip this section and start with Conda Environment (Recommended / GW Analysis).

pip install gwexpy

Developer Mode#

For contributors who want to install from source and set up a testing environment. Conda is optional here. Use the Conda workflow above when you need to validate gw-related binary dependencies; otherwise, a standard virtual environment such as venv is fine for documentation work and general development.

  • Purpose: install from a local clone for editing and tests

  • Input: Git plus a Python virtual environment

  • Output: an editable install via pip install -e

git clone https://github.com/tatsuki-washimi/gwexpy.git
cd gwexpy
pip install -e ".[dev,all]"

Use the developer mode only when you need to edit GWexpy itself or test unreleased changes from the repository. For normal use, prefer the PyPI commands above.

2. Dependency Troubleshooting#

For No module named nds2, FrameLIB / framecpp import errors, and mixed-environment repairs, see the Troubleshooting guide — it covers these cases in more depth.

If you installed from Quickstart and later discover you need GW binary dependencies, return to Conda Environment (Recommended / GW Analysis) before adding more packages.


3. Optional Dependencies (Extras) Details#

Extra Name

Key Packages

Primary Use Cases

analysis

scikit-learn, statsmodels, pmdarima

Noise cancellation, forecasting, and machine learning.

fitting

iminuit, emcee, corner

Least-squares fitting and MCMC analysis.

gw

lalsuite, gwosc, gwinc, ligo.skymap

Data discovery, sensitivity calculations, and sky mapping.

io

nptdms

Reading LabVIEW TDMS formats.

netcdf4

netCDF4, xarray

Reading and writing NetCDF4 time-series files via xarray.

zarr

zarr

Reading and writing Zarr array stores.

plotting

pygmt

High-precision geographic mapping (GeoMap).

audio

pydub, tinytag

Audio export, processing, and optional metadata extraction.

seismic

obspy, mth5, mtpy

Seismic and magnetotelluric data.

control

control (python-control)

Control systems and transfer functions.


4. OS-Specific Notes#

  • Linux: Ensure standard build tools (build-essential) are installed.

  • macOS (Apple Silicon): Using the conda-forge channel ensures most binaries run natively on M1/M2/M3.

  • Windows (WSL2): We recommend installing GWexpy within a Linux environment on WSL2 rather than on Windows proper.

5. Security Note (Pickle)#

To facilitate sharing analysis results, GWexpy supports saving and restoring objects via Pickle. This uses Transparent Pickle technology, allowing objects to be restored as base GWpy objects even if the recipient does not have GWexpy installed.

Caution

Never load Pickle files from untrusted sources. Python’s pickle module has inherent security risks (Arbitrary Code Execution) when loading data. Always exchange data through trusted channels or consider more secure serialization formats like HDF5.

6. Next to Read#