clone the forked repository
git clone YOUR_FORKED_REPO_URL
# create a virtual environment
python3 -m venv venv
# activate the virtual environment
source venv/bin/activate
# install dependencies
pip install -r requirements.txt
# Create a virtual environment
py -m venv env
# Activate the virtual environment
env\Scripts\activate.bat
# Install dependencies
py -m pip install -r requirements.txt
The notebooks are located in the notebooks
directory.
To preview the website locally, run the following command:
quarto preview
The website is pubished to GitHub Pages when you commit to the main
branch.
Corey T. White