I got the next problem. During the last 3 months, I was building an application in Python 3.5 to test luminaries. For this application I used the next libraries, "tkinter", "sys", "threading", "os", "time", "shutil" that are included on the main Python 3.5 interpreter. In addition to this system libraries, I use "pyserial", "PyGreSQL", "PIL", "win32com", and "qrcode".
The program will be used on many PCs, so I need to compile all the code to make a fully functional application in every PC that is installed. I tried using PyInstaller, but it not works for me, for a reason that I don't understand, I can not make it work.
So, due that I think there is no more way to "compile" my python 3.5 app to an exe (all the solutions only works in Python 2.x), I think the solution is only two ways to resolve.
The first solution is, to copy the Python35 folder, that got all the libraries that I have already installed into another PC(this is because every single that I installed give me problems at the installation, specially pygresql) and if I can make an "Installer" that overwrite this Python35 folder into the new PC and create a link icon to the desktop that runs the .py script. (Simulate an APP is installed).
Or the second solution, rewrite all code into 2.x syntax and try installing again libraries for python 2.x, and make all the code functional again...
Which one do you recommend me... Or if you know any way that I could do this... I would be very grateful if you help me.
Thanks!