diff options
author | Brian Curtin <brian@python.org> | 2011-05-04 02:58:32 (GMT) |
---|---|---|
committer | Brian Curtin <brian@python.org> | 2011-05-04 02:58:32 (GMT) |
commit | afd01172f98c2c6f9aeb3a02d885ba6ec8f0540c (patch) | |
tree | 173b395e82e2192e47c1b5e59853562dab8dc9be | |
parent | 5bc7a44477210873d181e775ab7a012992dbd760 (diff) | |
parent | 03b8d4e47b06024fc6886910abf7c8935fba8141 (diff) | |
download | cpython-afd01172f98c2c6f9aeb3a02d885ba6ec8f0540c.zip cpython-afd01172f98c2c6f9aeb3a02d885ba6ec8f0540c.tar.gz cpython-afd01172f98c2c6f9aeb3a02d885ba6ec8f0540c.tar.bz2 |
Fix #11834. Correct site-packages paths.
Patch by Bryce Verdier.
-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 2692bd2..31c1d7f 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: |