How can you convert a python3 code to become executable. I am aware of py2exe program but its only for python2. Am asking if there is any program for python3 to exe
Asked
Active
Viewed 69 times
0
-
4Possible duplicate of [How can I turn a python 3.3 script into executable file? I found PyInstaller and py2exe, but both did not support 3.3](https://stackoverflow.com/questions/16770267/how-can-i-turn-a-python-3-3-script-into-executable-file-i-found-pyinstaller-and) – Oliver Charlesworth Dec 29 '17 at 20:05
-
1Possible duplicate of [How do I compile my Python 3 app to an .exe?](https://stackoverflow.com/questions/17907258/how-do-i-compile-my-python-3-app-to-an-exe) – mschmidt Dec 29 '17 at 20:16
-
So are they planning to introduce the program like py3exe ??? – user9148965 Dec 29 '17 at 23:42
1 Answers
0
Frozen binaries are not yet available for Python3. However, you can use the Api that allows you to run python code in C, but ideally, you would just use C to begin with.

mcchucklezz
- 376
- 1
- 16
-
Thanks.... So I guess we'll have to wait for them to launch a program like py3exe – user9148965 Dec 29 '17 at 23:45