diff options
author | mara004 <geisserml@gmail.com> | 2024-01-08 23:42:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-08 23:42:56 (GMT) |
commit | 0b2340263172ad0fdd95aed6266496b7f4db4de3 (patch) | |
tree | efced18df1c1ebfc21bbc0b0abc051d3dc58cdf2 | |
parent | 931d7e052e22aa01e18fcc67ed71b6ea305aff71 (diff) | |
download | cpython-0b2340263172ad0fdd95aed6266496b7f4db4de3.zip cpython-0b2340263172ad0fdd95aed6266496b7f4db4de3.tar.gz cpython-0b2340263172ad0fdd95aed6266496b7f4db4de3.tar.bz2 |
readme: fix displaying issue of command (#113719)
Avoid line break in command as this causes displaying issues on GH.
-rw-r--r-- | README.rst | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -206,8 +206,8 @@ directories installed using ``make altinstall`` contain the major and minor version and can thus live side-by-side. ``make install`` also creates ``${prefix}/bin/python3`` which refers to ``${prefix}/bin/python3.X``. If you intend to install multiple versions using the same prefix you must decide which -version (if any) is your "primary" version. Install that version using ``make -install``. Install all other versions using ``make altinstall``. +version (if any) is your "primary" version. Install that version using +``make install``. Install all other versions using ``make altinstall``. For example, if you want to install Python 2.7, 3.6, and 3.13 with 3.13 being the primary version, you would execute ``make install`` in your 3.13 build directory |