Create and activate a virtual environment for the project (at the project root directory):
python -m venv .venv
To enter the enviroment, please run the following if you are using a Mac
source .venv/bin/activate
If you are using Windows, please run
.venv\scripts\activate
Install poetry in your virtual environment.
pip install poetry
Install all project dependencies
poetry install
This will set up the packages needed for the homework.
You can now modify and run the rlhw/main.py
file and run it at the project root directory via
poetry run main