- Download this repository to zip
- Extract the zip file you've donwloaded
- Go to
ouput
-->Connected Wi-Fi
- Finally, run the
Connected Wi-Fi.exe
on your computer
pip install tkinter
pip install customtkinter
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="icons8-wifi-96.ico"
# Compile into single file, no terminal, set icon app, and set name for the app after compiled
pyinstaller main.py --onefile --windowed --icon="icons8-wifi-96.ico" --name="Connected Wi-Fi"
This project compiled using
auto-py-to-exe
. I recommend to compile any python file usingauto-py-to-exe
thanpyinstaller
.