Jump to content

py2exe

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 174.26.255.12 (talk) at 03:14, 8 December 2023 (clarified alternatives and differences). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
py2exe
Original author(s)Thomas Heller
Developer(s)Community
Initial release24 January 2001; 24 years ago (2001-01-24)
Stable release
0.13.0.0 / 5 November 2022; 2 years ago (2022-11-05)[1]
Repositorygithub.com/py2exe/py2exe
Written inPython, C
PlatformMicrosoft Windows
TypePackaging tool
LicenseMIT[2]
Websitewww.py2exe.org

py2exe is a Python extension which converts Python scripts (.py) into Microsoft Windows executables (.exe). These executables can run on a system without Python installed.[3] It is the most common tool for doing so.

py2exe was used to distribute the official BitTorrent client (before the version 6.0) and is still used to distribute SpamBayes as well as other projects.

Since May 2014, version 0.9.2.0 of py2exe is available for Python 3.[1] Before then, py2exe was made only for Python 2,[4] and it was necessary to use an alternative like cx_Freeze for Python 3 code.

Although this program transforms a .py file to an .exe, it does not make it run faster because py2exe bundles the Python bytecode without converting it to machine-code. It may even run slower than using the Python interpreter directly because of startup overhead.

Alternatives

Alternatives to py2exe include PyInstaller and cx_Freeze, which accomplish much the same thing. PyInstaller can create a single file executable, or, include related project files in a directory. cx_Freeze is known for being able to create executables for Windows, Mac, and Linux. py2exe meanwhile is used to create Windows executables[5].

References

  1. ^ a b "py2exe : Python Package Index".
  2. ^ "Licence". sourceforge.net May 2014.
  3. ^ "FrontPage". py2exe.org. Retrieved 2 February 2014.
  4. ^ "old Python 2 py2exe".
  5. ^ "Python PyInstaller Alternatives". ioflood.com. Retrieved 2023-12-07.