- (Optional) Create virtual environment
python3 -m venv venv (you can replace "venv" by the name you want to give your virtual environment)
- (Optional) Activate virtual environment
source venv/bin/activate (again replace "venv" by the name you gave the virtual environment)
- Install the project dependencies
pip install -r requirements.txt
- Execute main.py file:
python3 src/main.py
All the code is inside the src directory.
- The files in this directory deal with all the game logic
- The files in this directory deal with the internal game state representation
- The files in this directory deal with all the visual aspects of the game