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
pto pass a moveqto quit the gamerto revert last movesto show current scores
- install pre-commit hooks via:
pre-commit install