/skience2024

Skience 2024 Material

Primary LanguageJupyter Notebook

skience2024

Welcome!

This is the github Project for the 2024 Skience Winter School on Volcano Seismology. Training material for the lectures and practices is provided here.

https://www.skience.de/2024

Setup of Conda Environment for Skience24

Miniconda/Anaconda3 has to be installed for this to work!

  1. Download the skience24.yaml file from this repository! This file specifies all required packages for the environment. Warning: make sure the content of the file is correct and not raw html!

  2. Using the Anaconda Prompt (or your favorite console if it works): use conda to create an environment:

    conda env create -f <path_to_yaml_file>

  3. After this terminated successfully, you should be able to list the environment:

    conda env list

    and to activate it using:

    conda activate skience24

    When activated, your command line should show:

    (skience24) $

  4. Test the environment using:

    (skience24) $ obspy-runtests --report

    (skience24) $ msnoise utils test

  5. To eventually delete the environment again type (after the workshop, of course):

    conda env remove --name skience24

  6. Clone the git repository

    TODO!!!

If you have issues with the setup, please share the error messages on Mattermost -> Channel "Installation - Software Issues" !

For reference, a quick explanation on conda environment setup with yaml files can also be found here: https://medium.com/@balance1150/how-to-build-a-conda-environment-through-a-yaml-file-db185acf5d22