Luza is an implementation of an Azul-like board game. To see the rules of the game, click here.
In order to play Luza, you need to have Python 3.8+ installed on your machine, and the python library called tabulate.
You can install python on your operating system by following the guide here.
Tabulate is a library that facilitates a neat presentation of data in tabular form. Bundled with the installation of Python comes also its package manager pip
. In order to install tabulate, open the terminal, and run the following command:
pip install tabulate
After the dependencies have been installed, you can play the game by following these steps:
- clone/download the github repository to a folder in your local machine,
- open a terminal in the folder that contains main.py
- execute the command
python main.py
.
You should now be playing the game. Enjoy.