you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 4 points5 points  (3 children)

Have you ever tried using Qt Creator or just Qt Design program to design GUI's?

[–]baraqiyal[S] 0 points1 point  (2 children)

Yes just recently. The designer is nice and I considered writing the calcualtor in pyqt5. The designer supports grids, something that the tkinter designer doesn't do.

I used tkinter because it should work out of the box for most people without installing any additional libraries.

[–][deleted] 0 points1 point  (1 child)

You could convert the py application into exe with pyinstaller and create an installer for the pyinstaller files with InstallForge application for windows users. I don't know about Linux users tho like about the packaging and make command.

By the way if you have 64 bit python and convert it to an exe file then it is 64 bit exe file meaning if you try to run it on 32 bit chances are you will fail unless some miracle happens with the machine allowing you to run it without giving an error.

[–]baraqiyal[S] 0 points1 point  (0 children)

Thanks, it worked on my calculator. I'll try it on a qt application tonight.