This repo documents our journey into coding and computer science. It serves as a personal log of both the concepts we'll be covering and the challenges we'll be overcoming.
This repo uses Python >= 3.12.3.
We recommend using a virtual environment for the installation of the dependencies.
# installs virtualenv:
brew install virtualenv
# creates a new virtual environment:
virtualenv venv
# activates the virtual environment:
source venv/bin/activate
# lists all installed packages in this environment:
pip list# installs all dependencies necessary for the project:
pip install -r requirements.txt