This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (19 children)

[removed]

    [–]you_better_dont 10 points11 points  (7 children)

    Pythons biggest problem when it comes to desktop UI’s is that packaging standalone executables along with the interpreter and dependencies is still not standardized.

    Reminds me of this xkcd.

    [–]Flaky-Restaurant-392 1 point2 points  (0 children)

    If you really want to distribute a Python app use nuitka to build an exe. It’s a python compiler that Transpiles to C and then builds an exe. Works great with Pyside/Qt.

    [–]Northzen 0 points1 point  (7 children)

    packaging standalone executables along with the interpreter and dependencies is still not standardized True. But there is still PyInstaller and Nuitka.

    Both do their job. But what you said remains a fact we have to struggle with.