/workshops

Primary LanguageJupyter NotebookGNU General Public License v3.0GPL-3.0

Introduction

txt

Quick start guide

Run using Binder

Binder

Run on local machine

Run with Python venv

  1. Clone the repository and go to its root directory

  2. Create the virtual environment:

    python3 -m venv env
  3. Activate the virtual environment:

    source env/bin/activate
  4. Install the dependencies:

    pip install jupyter==1.0.0
    pip install -r requirements.txt
  5. Run the server:

    jupyter notebook notebooks/

Run with conda (preferred)

  1. Clone the repository and go to its root directory

  2. Create the conda environment:

    conda create --prefix ./.env python=3.9
  3. Activate the conda environment:

    conda activate ./.env
  4. Install the dependencies:

    conda install -c conda-forge jupyter
    conda install -c conda-forge obspy
    conda install -c conda-forge cartopy
  5. Run the server:

    jupyter notebook notebooks/