How to profile a PyInstaller application #8730
Unanswered
olumide-x
asked this question in
PyInstaller
Replies: 2 comments 4 replies
-
You could use it's Python API although why can't you profile your original Python code instead? |
Beta Was this translation helpful? Give feedback.
4 replies
-
I've added timing to my programs and apart from the extraction into the tempdir and the cleanup when it stops it is very much alike. Which is should it is the same interpreter just in another directory |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How would a PyInstaller (one-dir) application be profiled? Its not truly a native application so standard profilers won't work, and as there are no sources there's no obvious way (to me at least) to load the
cProfile
module. e.g.python -m cProfile dir/app.py
.Beta Was this translation helpful? Give feedback.
All reactions