“Python a Windows ejecutable” Código de respuesta

Python a Windows ejecutable

pyinstaller --onefile pythonScriptName.py
Concerned Cow

Python a Windows ejecutable

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

Python a Windows ejecutable

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

Python a Windows ejecutable

import PyInstaller.__main__

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

Respuestas similares a “Python a Windows ejecutable”

Preguntas similares a “Python a Windows ejecutable”

Más respuestas relacionadas con “Python a Windows ejecutable” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código