This briefly describes how to install a Python virtual environment for the Introduction to Quantitative Geology course.
- Install miniconda from https://docs.conda.io/en/latest/miniconda.html
- Install mamba
conda install mamba -n base -c conda-forge
- Clone the course Python environments from GitHub
git clone https://github.com/introqg/python-environments.git
- Change into the working directory with the cloned environment files
cd python-environments
- Create the python environment using mamba
mamba env create -f introqg-student.yml
- Activate the new environment and update JupyterLab
conda activate introqg-student sh postBuild
- Create the python environment using mamba
mamba env create -f introqg-teacher.yml
- Activate the new environment and update JupyterLab
conda activate introqg-teacher sh postBuild