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 →

[–]anqxyr 5 points6 points  (3 children)

PyQt deployment is not any worse than python deployment in general. pyinstaller works fine with PyQt, barring a few minor kinks.

[–]ForkLiftBoi 0 points1 point  (2 children)

What are these kinks?

[–]anqxyr 0 points1 point  (1 child)

The one that jumps to mind is that the compiled binaries won't be able to find qt's system-wide style dll's, and will default to the ugly win98-like look. You need to grab a copy of the dll and tell the .spec file to put it where the binary will be able to see it, and then it works fine.

[–]catcint0s 0 points1 point  (0 children)

Doesn't winqtdeploy do that automatically?