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.
Miniconda/Anaconda3 has to be installed for this to work!
-
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!
-
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>
-
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) $
-
Test the environment using:
(skience24) $
obspy-runtests --report
(skience24) $
msnoise utils test
-
To eventually delete the environment again type (after the workshop, of course):
conda env remove --name skience24
-
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