Important
If you download the project from GitHub, the game will not work as-is because all audio and video resources are missing.
The game must be run with Python 2 and the following library versions:
pygame==1.9.6
cx-freeze==5.0.1
psutil==5.8.0The game must be run with Python 3 and the following library versions:
pygame==2.1.2
cx-freeze==6.13.1
psutil==5.8.0Before running the code, update the following settings:
- Open:
FileProgetto/GlobalHWVar.py- On line 12, set the operating system. Choose one of the following values:
"Windows"
"Linux"
"Mac"- On line 14, set the
usando_python3variable:
usando_python3 = FalseUse False if you are running the game on Windows or Linux.
usando_python3 = TrueUse True if you are running the game on macOS.
Before creating the executable, update the following settings:
- Open:
FileProgetto/setup.py- On line 4, set the operating system. Choose one of the following values:
"Windows"
"Linux"
"Mac"- Open:
FileProgetto/GlobalHWVar.py- On line 13, set the
eseguibilevariable toTrue:
eseguibile = True- Run the script for your operating system:
Convertire_in_eseguibile_windows.bat./Convertire_in_eseguibile_linux.sh./Convertire_in_eseguibile_mac.sh- The executable will be created inside the
buildfolder.