19 lines
404 B
Plaintext
Executable File
19 lines
404 B
Plaintext
Executable File
contactos_app/
|
|
├── main.py
|
|
├── database/
|
|
│ └── contactos.db
|
|
├── styles/
|
|
│ ├── light.qss
|
|
│ └── dark.qss
|
|
├── icons/
|
|
│ └── app.ico
|
|
└── requirements.txt
|
|
|
|
|
|
🏁 Empaquetado listo
|
|
Windows
|
|
pyinstaller --onefile --windowed main.py
|
|
|
|
Linux (AppImage)
|
|
pyinstaller --onefile main.py
|
|
linuxdeploy --appdir AppDir --output appimage |