“en línea exe a Py Decompiler” Código de respuesta

PY TO EXE convertidor en línea

#Convert .py to .exe don't use python ver 3.9 will not work recomment 3.8:

pip install pyinstaller

#to convert to a simple exe file the exe file will be in your dist folder
pyinstaller 'fileName.py'

#to convert to a onefile exe file the exe file will be in your dist folder
pyinstaller --onefile 'fileName.py'

to convert to a onefile exe file and the python window will not appear
pyinstaller -w --onefile 'fileName.py'
Xabos

en línea exe a Py Decompiler

pyinstaller hangman_v1
Better Beaver

Respuestas similares a “en línea exe a Py Decompiler”

Preguntas similares a “en línea exe a Py Decompiler”

Más respuestas relacionadas con “en línea exe a Py Decompiler” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código