convert python scripts to exe file

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Eric CHAO

    #1

    convert python scripts to exe file

    I know py2exe can make an exe file. But python runtime dll is still
    there. How can I combine the dll file into the exe, just make one
    file?

    Thanks.
  • Larry Bates

    #2
    Re: convert python scripts to exe file

    Eric CHAO wrote:
    I know py2exe can make an exe file. But python runtime dll is still
    there. How can I combine the dll file into the exe, just make one
    file?
    >
    Thanks.
    You can use the bundle= parameter to get "less" files, but you can't
    get to only 1 because you need mscvr71.dll and w9xpopen.exe at a
    minimum as external files. If you want to have only 1 .EXE to
    distribute, use Inno Installer. Your users will thank you for
    having a proper installer, uninstaller.

    -Larry Bates

    Comment

    • Larry Bates

      #3
      Re: convert python scripts to exe file

      Eric CHAO wrote:
      I know py2exe can make an exe file. But python runtime dll is still
      there. How can I combine the dll file into the exe, just make one
      file?
      >
      Thanks.
      You can use the bundle= parameter to get "less" files, but you can't
      get to only 1 because you need mscvr71.dll and w9xpopen.exe at a
      minimum as external files. If you want to have only 1 .EXE to
      distribute, use Inno Installer. Your users will thank you for
      having a proper installer, uninstaller.

      -Larry Bates

      Comment

      Working...