diff options
author | Brian Curtin <brian@python.org> | 2011-05-04 02:57:00 (GMT) |
---|---|---|
committer | Brian Curtin <brian@python.org> | 2011-05-04 02:57:00 (GMT) |
commit | 308053ee1109fe8aacbdd0e44aaaaaad1800d2a3 (patch) | |
tree | b0a9d6134762f840bc01b5a15ea63806d9de66f3 /Doc/install | |
parent | b351bcca23becfa9097a35d931bc554c329b2615 (diff) | |
download | cpython-308053ee1109fe8aacbdd0e44aaaaaad1800d2a3.zip cpython-308053ee1109fe8aacbdd0e44aaaaaad1800d2a3.tar.gz cpython-308053ee1109fe8aacbdd0e44aaaaaad1800d2a3.tar.bz2 |
Fix #11834. Correct site-packages paths.
Patch by Bryce Verdier.
Diffstat (limited to 'Doc/install')
-rw-r--r-- | Doc/install/index.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/install/index.rst b/Doc/install/index.rst index 43286ac..6a11c5a 100644 --- a/Doc/install/index.rst +++ b/Doc/install/index.rst @@ -241,7 +241,7 @@ is pure Python or contains extensions ("non-pure"): +-----------------+-----------------------------------------------------+--------------------------------------------------+-------+ | Unix (non-pure) | :file:`{exec-prefix}/lib/python{X.Y}/site-packages` | :file:`/usr/local/lib/python{X.Y}/site-packages` | \(1) | +-----------------+-----------------------------------------------------+--------------------------------------------------+-------+ -| Windows | :file:`{prefix}` | :file:`C:\\Python` | \(2) | +| Windows | :file:`{prefix}\\Lib\\site-packages` | :file:`C:\\Python{XY}\\Lib\\site-packages` | \(2) | +-----------------+-----------------------------------------------------+--------------------------------------------------+-------+ Notes: |