“hacer un archivo exe pycharm” Código de respuesta

código para hacer un archivo exe para python

pip install pyinstaller

cd PathOfFile

pyinstaller --onefile -w ScriptName.py

(note that if you are using -w then your python file has to be an application and the file will be inside the "dist" folder)
Condemned Cowfish

hacer un archivo exe pycharm

In PyCharm use External Tools to make exe 
Settings -> External Tools
Name: PyInstaller  Group: External Tools
Program: [PATH]\pyinstaller.exe
Argument: main.py
Working directory: $ProjectFileDir$

How to use:
In current project go to menu Tools -> External Tools -> PyInstaller
I hope it helps!
Sparkling Salamander

hacer un archivo exe pycharm

pip gaand mara
Smoggy Skimmer

Respuestas similares a “hacer un archivo exe pycharm”

Preguntas similares a “hacer un archivo exe pycharm”

Más respuestas relacionadas con “hacer un archivo exe pycharm” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código