Pyinstaller command strip away important traceback details #8567
Unanswered
FuckingToasters
asked this question in
Help
Replies: 1 comment 41 replies
-
I suspect that if you want detailed tracebacks, you need source .py files, and PyInstaller does not collect those by default. As for the lines being off, I've never noticed that with "built-in" tracebacks. So it might be the artifact of the traceback library you are using (perhaps caused by the lack of source .py files). |
Beta Was this translation helpful? Give feedback.
41 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Note: This Discussion originally started on dashingsoft/pyarmor#1789
Hello, so i used following pyinstaller command to build te exe:
I would like to show the same error amount which shows when running the Joinify.py file directly.
I use the rich libary to save beautified Traceback info as HTML File but the output only contain the function name when running the comopiled executable. Not even the file etc.
Note that i also use a custom Joinify.spec file with the content listed below:
I would like to let it show every error detail and not only the function name and line count (the line count is a few lines off too plus it don't show the file it occured in.)
Beta Was this translation helpful? Give feedback.
All reactions