Installation

Introduction

This document provides instructions for installing the DAS4Whales package on your system.

Prerequisites

Before proceeding with the installation, make sure you have the following prerequisites:

  • Python 3.6 or higher

  • Pip package manager

  • Virtual environment (optional but recommended)

Installation Steps

Follow these steps to install DAS4Whales:

  1. Create a virtual environment (optional but recommended):

    python3 -m venv myenv
    
  2. Activate the virtual environment:

    source myenv/bin/activate
    
  3. Install DAS4Whales using pip:

    pip install das4whales
    
  4. Verify the installation:

    pip list | grep das4whales
    

    This command should display the version number of DAS4Whales.

Optional Dependencies

For ASN interrogator support, you’ll need to install SimpleDAS separately:

pip install git+https://github.com/qgoestch/simpleDAS

Usage

To use DAS4Whales, refer to the documentation and examples provided in the tutorial

Conclusion

Congratulations! You have successfully installed DAS4Whales on your system. Enjoy using the package!