File size: 549 Bytes
dee9618 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | pyinstaller --add-data "/home/rakib/miniconda3/envs/dApp/lib/python3.12/site-packages/ultralytics/cfg/default.yaml:ultralytics/cfg" --hidden-import=PIL._tkinter_finder --onefile -w myapp.py
pyinstaller myapp.spec
a = Analysis(
['myapp.py'],
pathex=[],
binaries=[],
datas=[('/home/rakib/miniconda3/envs/dApp/lib/python3.12/site-packages/ultralytics/cfg/default.yaml', 'ultralytics/cfg')],
hiddenimports=['PIL._tkinter_finder'],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False, |