For use on your own computer:
Instructions for Windows (10, 11 should be similar). Any other operating system (MAC-OS, Linux) should work very similar.
-
Install anaconda environment for your operating system (www.anaconda.com), -> free download -> give your email address -> download
-
After download run executable with all default settings
-
Create local folder for all your Jupyter notebooks
-
Open terminal window (under Windows type "anaconda prompt" in the search space bottom left)
-
"cd" to your notebook folder. Remember "cd .." goes one folder up "cd Folder" changes into the "Folder" directory. Remember to use tab completion ...
-
Create or modify your "environment.yml" file to:
name: seismo channels:
- conda-forge dependencies:
- python
- obspy
- numpy
- pip
- pip:
- nbgitpuller
- sphinx-gallery
- pandas
- matplotlib
- jupyter
- Run the following command in your base environment (the > is
conda env create -f environment.yml
- Activate (each time you want to use the notebooks) the environment "seismo"
onda activate seismo
- Now you should be able to run jupyter notebooks
jupyter notebook
-
You should now see either a file directory or a list of jupyter notebooks, just go inside the desired folder or click on the notebook.
-
Enjoy.
-
Remove environment from base via
conda remove -n ENV_NAME --all