Description
Can someone help me troubleshoot why I can't pack anything? I'm using Python 3.13 on Windows 23H2.
I'm trying to package my app with:
nicegui-pack --onefile --name "myapp" main.py
main.py
from nicegui import native, ui
ui.label('Hello from PyInstaller')
ui.run(reload=False, port=native.find_open_port())
But I get this error when launching the dist/myapp.exe:

Running it directly with python .\main.py works:
