Horje
pyinstaller Code Example
pyinstaller
pip install pyinstaller

pyinstaller <file name>.py
pyinstaller --onefile <file name>.py
pyinstaller
pyinstaller --onefile --windowed --icon=<project-logo>.ico --add-data "<folder>;<folder>" <filename.py>
pyinstaller
pip install pyinstaller
pyinstaller
pyinstaller --onefile --noconsole "<filename>"
pyinstaller
# the exe is in the dist folder
pyinstaller file.py  # Basic programs 
pyinstaller --noconsole file.py  # GUI programs
pyinstaller --noconsole --onefile file.py  # GUI programs with just one file
pyinstaller
pyinstaller --onefile --noconsole <"filename">
Pyinstaller
"""
You use: pip install pyinstaller
to install Pyinstaller

Then use pyinstaller --onefile YourFileName.py to convert EXE

"""




Shell

Related
visual studio code ubuntu Code Example visual studio code ubuntu Code Example
find the size of file in linux Code Example find the size of file in linux Code Example
bash cd or make dir if not exists Code Example bash cd or make dir if not exists Code Example
ls human readable size Code Example ls human readable size Code Example
scp HostKeyVerification=false Code Example scp HostKeyVerification=false Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8