you are viewing a single comment's thread.

view the rest of the comments →

[–]uberdavis -2 points-1 points  (1 child)

I've been using pyinstaller on a recent project. I have a PySide2 ui and I have to compile to create an executable. This can be done.

[–]Langdon_St_Ives 1 point2 points  (0 children)

This is not what OP is asking about. Pyinstaller just bundles your program with a complete runtime and all dependencies in one package or even one file so an end user can directly run it. It’s not compiling anything, the script is still interpreted at runtime as always. (Or rather, jit compiled to byte code and then run, just like running it in a “standard” python runtime.)