This project implements the game Othello.
Execute and tested with Python 3.10
(Pygame does currently not work with Python > 3.10 on my machine.)
- create virtual environemt:
python3 -m venv venv
- init venv:
source venv/bin/activate
- install dependencies:
python3 -m pip install -r requirements
- run via:
python3 main.py
When game is running, press
p
to pass a moveq
to quit the gamer
to revert last moves
to show current scores
- install pre-commit hooks via:
pre-commit install