I have seen 10's of tutorial for python to exe. very few are for 3.6.1 and none have worked for me. Please help.
Gabriel
I have seen 10's of tutorial for python to exe. very few are for 3.6.1 and none have worked for me. Please help.
Gabriel
There is nothing that works well for python 3.6, so use python 3.5. When I convert python scripts to exe I use PyInstaller3.2.1 https://pypi.python.org/pypi/PyInstaller/3.2.1
and it works fine. Make sure your script is in the pyinstaller folder after you have built it then run the command python pyinstaller.py scriptName.py
cx-freeze is working with Python 3.6 - At least I already created binaries with this combination.
Here is a description of how to use it: https://regilanj.wordpress.com/2017/06/07/py-to-exe-in-python-3-6-1/