-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompile.txt
More file actions
23 lines (15 loc) · 1.08 KB
/
compile.txt
File metadata and controls
23 lines (15 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Restriction (May Occur)
pyinstaller --onefile --windowed --add-data "xPubConfig.JSON;." --add-data "HowToOperate.JSON;." --add-data "ReleaseNotes.JSON;." --icon="film-reel.ico" xPubUi.py
NO Restriction
pyinstaller --windowed --add-data "xPubConfig.JSON;." --add-data "HowToOperate.JSON;." --add-data "ReleaseNotes.JSON;." --icon="film-reel.ico" xPubUi.py
xPubUi/
├── xPubUi.exe <-- Your main application executable
├── xPubConfig.JSON <-- Your added data file
├── HowToOperate.JSON <-- Your added data file
├── ReleaseNotes.JSON <-- Your added data file
├── base_library.zip <-- Core Python modules
├── pythonXXX.dll <-- Python DLL (e.g., python311.dll)
├── various DLL files (.dll) <-- Other needed system libraries
├── various library folders <-- Folders containing Python packages (like PySide6, psutil)
└── _internal/ <-- Folder containing PyInstaller's runtime files & other dependencies
└── ... (many files and folders)