I have successfully followed the instructions here and have created a single executable albeit in byte code e.g. a .pyc
extension. The question now is how to convert it to a binary executable. I read here that I should convert the bytecode into C arrays and compile with a C compiler. Is this the reccomended way?
Asked
Active
Viewed 592 times
0

Community
- 1
- 1

user4261180
- 151
- 2
- 3
- 11
-
Both py2exe and PyInstaller create .exe files, not specifically .pyc files, and no additional steps should be required. – martineau Nov 25 '14 at 21:47
-
@martineau But I wanted a stand alone binary exe, not this "bundled" .pyc file described [here](http://www.py2exe.org/old/) – user4261180 Nov 25 '14 at 22:01
-
@martineau Even if this bundled version can work on other platforms, I still have the problem of the window console which keeps appearing. – user4261180 Nov 25 '14 at 22:02