So I am not sure I understood the requirements. A said maybe Colab notebook? I said something he can run locally, and J said just tell me what to get ready. This can run offline in jupyter notebook, or it can run in vscode, and probably more? Oooh! It looks like it works ok also in codespaces...
probably if I put enough exclammation points in there it can run in Colab too? (need to install dependencies )
- download or clone the code
- open the folder in vscode
- open a terminal pane within vscode (so it starts with its current working directory being
Turtling-Around/) - make a python virtual environment to keep the dependencies from mucking up other python stuff you might be doing. from the terminal in that directory,
python -m venv .venv - activate the virtual environment
- mac or linux:
source .venv/bin/activate - windows (I think):
.venv\Scripts\Activate.ps1
- mac or linux:
- install the python required dependencies:
pip install -r requirements.txt - open the Intro or OGIntro notebook and explore!