There are two ways of setting up the environment for the course. The first one is using Poetry, a Python package manager. The second one is using pip. The first one is recommended as introduces virtual environments and dependency management, but the second one is easier to set up.
You will need Python 3.9 or higher.
### Using Poetry
- Install Poetry following the instructions in https://python-poetry.org/docs/#installation
- Clone this repository with
git clone
- Go to the repository folder and run
poetry install
- Run
poetry shell
to activate the virtual environment In visual studio code, you can select the virtual environment by clicking on the Python version in the bottom left corner.
- Clone this repository with
git clone
- Go to the repository folder and run
pip install -r requirements.txt