Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- # librerias externas: PyInstaller, py2exe, cx_Freeze
- # como instalarla:
- # python -m pip install pyinstaller
- # para crear un ejecutable en una carpeta a distribuir
- # (código fuente, ejecutable, etc)
- pyinstaller miscript.py
- # para crear SOLO un ejecutable
- pyinstaller --onefila miscript.py
- # para crear solo el ejecutable, sin consola:
- pyinstaller --onefile --noconsole miscript.py
Advertisement
Add Comment
Please, Sign In to add comment