0

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

Guy
  • 91
  • 1
  • 6

2 Answers2

1

Use pyInstaller with the -F options.

jangler
  • 949
  • 6
  • 7
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