Advertisement
MizunoBrasil

Compilação em EXE de programas em Python

Sep 16th, 2024
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Compilar em EXE único
  2. pyinstaller -F nome_do_arquivo.py
  3.  
  4.  
  5. Compilar em EXE único sem a janela de terminal
  6. pyinstaller --onefile --windowed nome_do_arquivo.py
  7.  
  8.  
  9. Compilar projetos que tenham tkcalendar
  10. pyinstaller --windowed --hidden-import babel.numbers --hidden-import babel.localedata nome_do_arquivo.py
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement