[Python-checkins] r51243 - sandbox/trunk/setuptools/EasyInstall.txt

phillip.eby python-checkins at python.org
Sun Aug 13 19:42:59 CEST 2006


Author: phillip.eby
Date: Sun Aug 13 19:42:59 2006
New Revision: 51243

Modified:
   sandbox/trunk/setuptools/EasyInstall.txt
Log:
Fix wrong Mac OS X installation paths.


Modified: sandbox/trunk/setuptools/EasyInstall.txt
==============================================================================
--- sandbox/trunk/setuptools/EasyInstall.txt	(original)
+++ sandbox/trunk/setuptools/EasyInstall.txt	Sun Aug 13 19:42:59 2006
@@ -1003,7 +1003,7 @@
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 If you are on a Mac OS X machine, you should just use the
-``~/Library/Python2.x/site-packages`` directory as your custom installation
+``~/Library/Python/2.x/site-packages`` directory as your custom installation
 location, because it is already configured to process ``.pth`` files, and
 EasyInstall already knows this.
 
@@ -1011,7 +1011,7 @@
 file with the following contents (or add this to the existing contents)::
 
     [install]
-    install_lib = ~/Library/Python$py_version_short/site-packages
+    install_lib = ~/Library/Python/$py_version_short/site-packages
     install_scripts = ~/bin
 
 This will tell the distutils and EasyInstall to always install packages in


More information about the Python-checkins mailing list