After I make an exe file, there are many files such as .pyd that my exe depend on them.. I want to make a program with only one exe file which will be handie.. please help me
Asked
Active
Viewed 328 times
2 Answers
0
Py2exe is a tool provides an exe application which can be run without installing python interpreter, after packaging you find your exe and dlls of interpreter and all modules... In dist folder. It does nt provide all in one exe, use pyinstaller instead

Saidi oussama
- 21
- 3
-
Thank you very much! I used it. works perfectly good. – Guy Jun 08 '15 at 13:37