File tree Expand file tree Collapse file tree 3 files changed +9
-10
lines changed
Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -90,11 +90,12 @@ then compiles the generated C code and links it with the rest of the Python
9090interpreter to form a self-contained binary which acts exactly like your script.
9191
9292Obviously, freeze requires a C compiler. There are several other utilities
93- which don't. One is Thomas Heller's py2exe (Windows only) at
93+ which don't:
9494
95- http://www.py2exe.org/
96-
97- Another tool is Anthony Tuininga's `cx_Freeze <https://anthony-tuininga.github.io/cx_Freeze/ >`_.
95+ * `py2exe <http://www.py2exe.org/ >`_ for Windows binaries
96+ * `py2app <https://github.com/ronaldoussoren/py2app >`_ for Mac OS X binaries
97+ * `cx_Freeze <https://cx-freeze.readthedocs.io/en/latest/ >`_ for cross-platform
98+ binaries
9899
99100
100101Are there coding standards or a style guide for Python programs?
Original file line number Diff line number Diff line change @@ -140,11 +140,9 @@ offender.
140140How do I make an executable from a Python script?
141141-------------------------------------------------
142142
143- See `cx_Freeze <https://cx-freeze.readthedocs.io/en/latest/ >`_ for a distutils extension
144- that allows you to create console and GUI executables from Python code.
145- `py2exe <http://www.py2exe.org/ >`_, the most popular extension for building
146- Python 2.x-based executables, does not yet support Python 3 but a version that
147- does is in development.
143+ See `cx_Freeze <https://cx-freeze.readthedocs.io/en/latest/ >`_ and
144+ `py2exe <http://www.py2exe.org/ >`_, both are distutils extensions
145+ that allow you to create console and GUI executables from Python code.
148146
149147
150148Is a ``*.pyd `` file the same as a DLL?
Original file line number Diff line number Diff line change @@ -1106,7 +1106,7 @@ shipped with PyWin32. It is an embeddable IDE with a built-in debugger.
11061106cx_Freeze
11071107---------
11081108
1109- `cx_Freeze <https://anthony-tuininga.github .io/cx_Freeze / >`_ is a :mod: `distutils `
1109+ `cx_Freeze <https://cx-freeze.readthedocs .io/en/latest / >`_ is a :mod: `distutils `
11101110extension (see :ref: `extending-distutils `) which wraps Python scripts into
11111111executable Windows programs (:file: `{ * } .exe ` files). When you have done this,
11121112you can distribute your application without requiring your users to install
You can’t perform that action at this time.
0 commit comments