A public GitHub repository within the organization uafgeoteach. Contains materials for GEOS 419 Solid Earth Geophysics, a class at the University of Alaska Fairbanks by Bryant Chow and Carl Tape
Course Webpage: GEOS 419
This repository can be downloaded from GitHub with the following command:
git clone --depth=1 https://github.com/uafgeoteach/GEOS419_SEG.git
UAF students will run these notebooks within the OpenScienceLab environment and do not need to install anything or set up their own environments.
For advanced students who would like to run things on their own computer, please follow the instructions below.
- Install miniconda or anaconda
- Clone the GEOS419_SEG respository to wherever you store GitHub repositories
git clone --depth=1 https://github.com/uafgeoteach/GEOS419_SEG.git
- Navigate to the GEOS419_SEG directory
cd GEOS419_SEG
- Create your Conda environment from the course environment file
conda env create -f setup/geos419.yml
- Activate the conda environment
conda activate geos419
- Launch jupyter lab
jupyter lab
-
This should open a web browser interface where you can browse and run notebooks.
-
Once you are done, make sure to save your progress and then close out of the browesr. Don't forget to deactive your Conda environment
conda deactivate