teslariu

exes

Feb 12th, 2022
1,164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # librerias externas: PyInstaller, py2exe, cx_Freeze
  5.  
  6.  
  7. # como instalarla:
  8. # python -m pip install pyinstaller
  9.  
  10. # para crear un ejecutable en una carpeta a distribuir
  11. # (código fuente, ejecutable, etc)
  12. pyinstaller miscript.py
  13.  
  14. # para crear SOLO un ejecutable
  15. pyinstaller --onefila miscript.py
  16.  
  17. # para crear solo el ejecutable, sin consola:
  18. pyinstaller --onefile --noconsole miscript.py
Advertisement
Add Comment
Please, Sign In to add comment