Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Run PyInstaller from Python

import PyInstaller.__main__

PyInstaller.__main__.run([
    'my_script.py',
    '--onefile',
    '--windowed'
])

# is equivalent to
# pyinstaller my_script.py --onefile --windowed
Source by pyinstaller.org #
 
PREVIOUS NEXT
Tagged: #Run #PyInstaller #Python
ADD COMMENT
Topic
Name
5+3 =