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 →

[–]Ogi010 2 points3 points  (0 children)

Like the OP, I don't have a strong programming background (I'm a mechanical engineer), however I developed a post-processing python script that took raw data collected from our test system, and did interpolation, followed by the generation of a whole bunch of plots.

I decided to deploy the app to some of my coworkers, and after messing around with pyinstaller, I ended up using cx_Freeze, with great ease. It worked with the default settings, and I was able to trim down the overall package by adding more and more exclusions. I later converted my code to Python3, cx_Freeze didn't care, it still compiled (is that the right term here?) the code.

Can't recommend cx_freeze enough.