Replies: 1 comment 9 replies
-
Looks identical to #1207, which we closed because we've been waiting for informations from @Devil-Ryu. from nicegui import ui
ui.label('Hello from PyInstaller')
ui.run(reload=False) got me thinking. In native mode we search for the next free port as explained for example in #1457. But the example code above does no such thing. Thereby if the port is already taken the NiceGUI server can not start. Could you try from nicegui import native_mode, ui
ui.label('Hello from PyInstaller')
ui.run(reload=False, port=native_mode.find_open_port()) |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Question
Hi,
first of all, I love your work, thank you so much.
I want to deploy the example of the documentation via pyinstaller (https://nicegui.io/documentation#package_for_installation) on MacOS Ventura 13.4.1 on an Intel machine.
Does anyone have an idea about this problem?
Best regards and thx
Sebastian
Beta Was this translation helpful? Give feedback.
All reactions