Here We Create an Executable from Python Scripts.Here we use pyinstaller to create an Exe file.
Pyinstaller is installed using the following command in command Line
pip install pyinstaller
The command for creating an executable is
pyinstaller --onefile --windowed -i (icon file) (Python main script.py)
Here --onefile is optional.To create an single executable ,we give that option.
Here --windowed, should be given only for GUI based Python scripts. For Console appliocation don't give this option.
And -i icon file is also optional just to set the icon for executable.
Simplified form of above command is
pyinstaller (Python main script.py)
En esta página del sitio puede ver el video en línea Creating an Executable from Python Scripts de Duración hora minuto segunda en buena calidad , que subió el usuario Saravanan Natarajan 27 febrero 2021, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 33 veces y le gustó 1 a los espectadores. Disfruta viendo!