I want to make a Python 3.6 program which I develop on Ubuntu into an executable for windows. From what I searched online it seems I will need pyinstaller over wine. If there is an easier way, you can stop reading here, and suggest another way. I tried to follow the answer on Cross-compiling a Python script on Linux into a Windows executable but then I got to the part after downloading the python. I downloaded the latest python version for windows which was the file python-3.7.3-amd64.exe which is not an MSI like in the answer on the link above which use python-2.7.10.msi. What would be the replacement for the cmd in the link for:
wine msiexec /i python-2.7.10.msi /L*v log.txt
? Do the other steps have to change? In general, is it more recommendable to use python 2.7 to create the exe, can't my program have incompatibility issues with it (since i used python3.6 on my Linux for the development)?