# 安装需要的包
pip install necegui
pip install pywebview
from nicegui import ui
ui.label("Hello World.") # 页面放置组件
# native=True这参数设置了才能显示窗口
ui.run(reload=False, native=True)
import os
import subprocess
from pathlib import Path
import nicegui
cmd = ['PyInstaller',
'main.py',#your main file with ui.run()
'--name','myapp',#name of your app
'--onefile',
'--windowed',
'--clean',
'--add-data',f'{Path(nicegui.__file__).parent}{os.pathsep}nicegui'
]
subprocess.call(cmd)