“Python для исполняемых Windows” Ответ

Python для исполняемых Windows

pyinstaller --onefile pythonScriptName.py
Concerned Cow

Python для исполняемых Windows

# install the libraries
pip install auto-py-to-exe
#start the gui-application
auto-py-to-exe
Marc Tolkmitt

Python для исполняемых Windows

pyinstaller --onefile pythonScriptName.py
# executable is created in 'dist'-folder
Marc Tolkmitt

Python для исполняемых Windows

import PyInstaller.__main__

PyInstaller.__main__.run([
    'my_script.py',
    '--onefile',
    '--windowed'
])
#Is equivalent to: pyinstaller my_script.py --onefile --windowed
Marc Tolkmitt

Ответы похожие на “Python для исполняемых Windows”

Вопросы похожие на “Python для исполняемых Windows”

Больше похожих ответов на “Python для исполняемых Windows” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования