Installation
Requirements
SeaSenseLib requires Python 3.10 or later and depends on several scientific Python packages, all of which are installed automatically by pip:
Core data handling: xarray, pandas, numpy, scipy
File format support: netcdf4, pycnv, pyrsktools, seabirdscientific, mhkit (with the
dolfynextra, for Nortek/RDI raw data)Scientific computing: gsw (Gibbs SeaWater library), pint (units)
Plotting: matplotlib
You do not need to install these individually — they come with SeaSenseLib.
If you are new to Python, first check that Python 3.10+ is available:
python3 --version
If it reports a version below 3.10 (or the command is not found), install a current Python from python.org or via a distribution such as Miniconda (see below) before continuing.
Install from PyPI
The easiest way to install SeaSenseLib is using pip:
pip install seasenselib
This will install SeaSenseLib and all required dependencies.
Using conda or mamba
Many oceanographers manage Python with Anaconda/Miniconda (conda) or its faster drop-in replacement mamba. SeaSenseLib is not yet published on conda-forge, so you create a conda environment and then install SeaSenseLib into it with pip:
# with conda
conda create -n seasenselib python=3.11
conda activate seasenselib
pip install seasenselib
# or with mamba (same commands, faster solver)
mamba create -n seasenselib python=3.11
mamba activate seasenselib
pip install seasenselib
Installing with pip inside an activated conda environment is expected and supported here. Do not run conda install seasenselib — the package is not on any conda channel and that command will fail.
Development Installation
If you want to contribute to the project or modify the code, follow these steps:
Clone the repository:
git clone https://github.com/ocean-uhh/seasenselib.git cd seasenselib
Create and activate a virtual environment:
On Linux/macOS:
python3 -m venv venv source venv/bin/activate
On Windows (CMD):
python -m venv venv venv\Scripts\activate.bat
On Windows (PowerShell):
python -m venv venv venv\Scripts\Activate.ps1
Install in development mode:
pip install --upgrade pip setuptools wheel pip install -e ".[dev]"
This installs SeaSenseLib in “editable” mode (changes to the source take effect immediately without reinstalling). The
[dev]part is an optional dependency group that adds tools needed only for development — pytest (running tests), sphinx, nbsphinx, myst-parser and the RTD theme (building these docs), plus build and twine (packaging). A plainpip install -e .skips those.The same editable install works inside a conda/mamba environment: activate the environment first, then run the
pip install -e ".[dev]"command.
Using the conda environment file:
For development with conda, the repository provides an environment.yml that creates an environment named seasenselib with Python (3.10–3.13), gsw, pandoc, and all runtime and development dependencies:
conda env create -f environment.yml
conda activate seasenselib
pip install -e .
The environment file installs the dependencies but not SeaSenseLib itself, so the final pip install -e . installs the package in editable mode from the repository root.
Alternative Installation Methods
Using Makefile (requires pipenv):
If you have pipenv installed, you can use the provided Makefile:
make setup
make install
Manual dependency installation:
If you prefer to manage dependencies manually:
pip install -r requirements.txt
pip install -e .
Verify Installation
Test that the installation works correctly:
Test the command-line interface:
seasenselib --help
This should display the available commands and options.
Test the Python library:
import seasenselib
from seasenselib.readers import SbeCnvReader
print("SeaSenseLib installed successfully!")
Run the test suite (development installation only):
python -m pytest tests/
(python -m unittest discover tests/ also works if you prefer the standard library test runner.)
Troubleshooting
Common Issues:
Missing dependencies: If you encounter import errors, ensure all dependencies are installed:
pip install -r requirements.txt
Permission errors: On some systems, you may need to use
pip install --userto install packages in your user directory.Python version: Ensure you’re using Python 3.10 or later:
python --versionVirtual environment issues: If you’re having trouble with virtual environments, try deactivating and recreating:
deactivate rm -rf venv python3 -m venv venv source venv/bin/activate
Getting Help:
If you encounter installation issues:
Check the GitHub Issues for similar problems
Create a new issue with details about your system and the error message
Include the output of
pip listandpython --version