Saltar al contenido

convertir py a exe ejemplo de código en línea

Nuestro grupo especializado luego de ciertos días de investigación y recopilar de datos, hemos dado con los datos necesarios, esperamos que te sea útil en tu proyecto.

Ejemplo 1: como hacer un exe de Python

pip install pyinstaller

cd YourFilePath

pyinstaller --onefile YourFileName

Ejemplo 2: cómo convertir un archivo .py a .exe

Hold shift and right click where your python file is located
and then type

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

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

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

# (NOTE: DON'T DO THIS IF YOU PROGRAM IS CONSOLE BASED)
# (IF YOU HAVE MADE A GAME USING PYGAME OR USING ANYTHING ELSE
#   WHERE CONSOLE IS NOT USED THEN IT'S FINE)
# For more help you can click the link bellow
# It's 12 min tutorial of codewithharry

Ejemplo 3: autopytoexe

# Pip install
$ pip install auto-py-to-exe
$ auto-py-to-exe

# clone install
$ git clone https://github.com/brentvollebregt/auto-py-to-exe.git
$ python -m pip install -r requirements.txt
$ cd auto-py-to-exe
$ python setup.py install

$ auto-py-to-exe

Ejemplo 4: python a .exe en línea

$ auto-py-to-exe

valoraciones y reseñas

Eres capaz de añadir valor a nuestra información tributando tu experiencia en las interpretaciones.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *