- Download this repository (zip)
- Extract the file you've already downloaded
- Go to
ouput
folder - Go to
Interleaving Simulator
folder - Finally, run the
Interleaving Simulator.exe
Keep in mind, if you want to move to other folder, make sure to move all inside
Interleaving Simulator
folder. Otherwise, the program won't run.
venv\Scripts\activate
pip install tkinter
pip install pyinstaller
pip install auto-py-to-exe
# Compile normal
pyinstaller main.py
# Compile with no terminal
pyinstaller main.py --windowed
# Compile into single file and no terminal
pyinstaller main.py --onefile --windowed
# Compile into single file, no terminal, and set icon app
pyinstaller main.py --onefile --windowed --icon="assets\interleaving app.ico"
# Compile into single file, no terminal, set icon app, and set name for the app after compiled
pyinstaller main.py --onefile --windowed --icon="assets\interleaving app.ico" --name="Interleaving Simulator"
In this project, I compiled it using auto-py-to-exe
. For detail om how to compile using this library, you can check tutorial on YouTube.
Link below:
https://youtu.be/Y0HN9tdLuJo?si=qW8ea1cufsxni90u
auto-py-to-exe