On Wed, Apr 29, 2009 at 5:43 PM, Omita <hays.cl...@gmail.com> wrote: > Long story short... I am installing Python 2.6 on OSX Server. By > default the Python.framework is installing in /Library: > > /Library/Frameworks/Python.framework > > However, as I am using OSX Server I would ideally like the install > location to be here: > > /System/Library/Frameworks/Python.framework/ >
No, you don't want the install location to be there. """ Third-party frameworks should never be installed in the /System/Library/Frameworks directory. Access to this directory is restricted and is reserved for Apple-provided frameworks only. """ http://developer.apple.com/documentation/MacOSX/Conceptual/BPFrameworks/Tasks/InstallingFrameworks.html Regardless, the linker searches /Library/Frameworks before /System/Library/Frameworks so a user-installed framework gets priority over the system one. > > Do I need to use the "--libdir" flag? Or is that referring to "lib" > not "Library"? > > -Thanks > -- > http://mail.python.org/mailman/listinfo/python-list >
-- http://mail.python.org/mailman/listinfo/python-list