Installation: a step-by-step guide

1. Install Python

1.1. Windows

Download the latest version of Python from the official website. Run the installer and make sure to check the box "Add Python to PATH".

1.2. Linux

Python is already installed in most Linux distributions. To check if you have it installed, open a terminal and type:

python3 --version

If you don't have it installed, you can install it using your package manager. For example, in Ubuntu, you can install it by typing:

sudo apt-get install python3

2. Install Pygame

Open a terminal and type:

pip3 install pygame

or

pip install pygame

3. Clone the repository

Open a terminal and type:

git clone https://github.com/FidyBack/Projeto_Z_de_Jogo.git

4. Install the fonts

Go to the directory where you cloned the repository and open the folder "fonts". Select the "acknowtt.ttf" file and install it.

5. Run the game

Open a terminal, go to the directory where you cloned the repository and type:

cd src
python3 main.py

or

cd src
python main.py

6. Enjoy the game!