-
Notifications
You must be signed in to change notification settings - Fork 0
Compile
Fernando José edited this page Oct 20, 2023
·
1 revision
If you wish to compile the project yourself, follow these steps. Note that the project is already compiled and available as an executable (.exe) file for direct use.
-
Open a terminal or command line.
-
Navigate to the root folder of the project where the
main.pyfile is located. -
Run the following command to compile the project:
pyinstaller --add-data "imagenes;imagenes" --add-data "datos;datos" main.pyThis command will use PyInstaller to create an executable file from main.py. Make sure that all necessary images and data are located in the images and data folders inside the root folder of the project.
Once the compilation is complete, you will find the executable file in the dist folder inside the root folder of the project. You can run the program from there.