I’m trying to run dash debug with pyinstaller. This normally works when I run it normally without pyinstaller
However with pyinstaller, I get the following error:
Traceback (most recent call last):
File “cli.py”, line 13, in
File “app/app_overview.py”, line 21, in run
File “dash/dash.py”, line 2133, in run_server
File “dash/dash.py”, line 1899, in run
File “dash/dash.py”, line 1656, in enable_dev_tools
File “dash/dash.py”, line 1665, in
I’ve also tried adding the packages to datas:
datas += collect_data_files(‘dash_core_components’)
datas += collect_data_files(‘dash_draggable’)
datas += collect_data_files(‘dash_extensions’)
datas += collect_data_files(‘dash_html_components’)
datas += collect_data_files(‘dash_iconify’)
datas += collect_data_files(‘dash_mantine_components’)
datas += collect_data_files(‘dash_renderer’)
But so far I’ve had no luck. Has anyone managed to get this working ?
Thanks in advance