diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-08-02 00:06:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-02 00:06:22 (GMT) |
commit | 5f139e5044c96156560c8028058beb0e79177b29 (patch) | |
tree | 668e4bd648d7cbc1c311ae411e252319a6c27b4d /Doc/using | |
parent | b12dba40ff00e0c7a47036401cdcfbe3845d9c2a (diff) | |
download | cpython-5f139e5044c96156560c8028058beb0e79177b29.zip cpython-5f139e5044c96156560c8028058beb0e79177b29.tar.gz cpython-5f139e5044c96156560c8028058beb0e79177b29.tar.bz2 |
gh-92219: Clarify that some options to the installer may break the install (GH-95548)
(cherry picked from commit d2c1a9c76c001b18c14e50779b0ee41ea4ccf0b3)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/windows.rst | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst index 7fb40a3..076679b 100644 --- a/Doc/using/windows.rst +++ b/Doc/using/windows.rst @@ -181,18 +181,22 @@ of available options is shown below. | Include_debug | Install debug binaries | 0 | +---------------------------+--------------------------------------+--------------------------+ | Include_dev | Install developer headers and | 1 | -| | libraries | | +| | libraries. Omitting this may lead to | | +| | an unusable installation. | | +---------------------------+--------------------------------------+--------------------------+ | Include_exe | Install :file:`python.exe` and | 1 | -| | related files | | +| | related files. Omitting this may | | +| | lead to an unusable installation. | | +---------------------------+--------------------------------------+--------------------------+ | Include_launcher | Install :ref:`launcher`. | 1 | +---------------------------+--------------------------------------+--------------------------+ -| InstallLauncherAllUsers | Installs :ref:`launcher` for all | 1 | -| | users. | | +| InstallLauncherAllUsers | Installs the launcher for all | 1 | +| | users. Also requires | | +| | ``Include_launcher`` to be set to 1 | | +---------------------------+--------------------------------------+--------------------------+ | Include_lib | Install standard library and | 1 | -| | extension modules | | +| | extension modules. Omitting this may | | +| | lead to an unusable installation. | | +---------------------------+--------------------------------------+--------------------------+ | Include_pip | Install bundled pip and setuptools | 1 | +---------------------------+--------------------------------------+--------------------------+ |