I have and got werkzeug.exceptions not found import error. I tried to add a
hook-werkzeug.exceptions.py in PyInstaller/hooks with
hiddenimports = ['abort']
but I still got this error. Anyone knows how to fix this?
(I also tried to manually add from werkzeug.exceptions import abort -- in my code, but when i run it, it still gives me:raise ImportError("No module named %s" % fqname) -- Unhandled ImportError: No module named werkzeug.exceptions)
Thanks,
--Ram