Message120380
| Author |
ned.deily |
| Recipients |
Max.Skaller, loewis, ned.deily |
| Date |
2010年11月04日.06:19:49 |
| SpamBayes Score |
0.00030839344 |
| Marked as misclassified |
No |
| Message-id |
<1288851592.49.0.19819499978.issue10243@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
For what it's worth, the python.org installers for Mac OS X do include a libpython shared library. As of Python 2.7 (and 3.2), the installer includes a symlink to make it easier to find:
$ cd /Library/Frameworks/Python.framework/Versions/2.7/lib
$ ls -l libpython2.7.dylib
$ lrwxr-xr-x 1 root admin 9 Oct 27 20:46 libpython2.7.dylib@ -> ../Python
$ file ../Python
../Python: Mach-O universal binary with 2 architectures
../Python (for architecture ppc): Mach-O dynamically linked shared library ppc
../Python (for architecture i386): Mach-O dynamically linked shared library i386
$ cd /Library/Frameworks/Python.framework/Versions/2.6
$ file Python
Python: Mach-O universal binary with 2 architectures
Python (for architecture ppc): Mach-O dynamically linked shared library ppc
Python (for architecture i386): Mach-O dynamically linked shared library i386
In Debian and Ubuntu releases, the shared library is put into its own optionally installed package, libpythonx.x. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2010年11月04日 06:19:52 | ned.deily | set | recipients:
+ ned.deily, loewis, Max.Skaller |
| 2010年11月04日 06:19:52 | ned.deily | set | messageid: <1288851592.49.0.19819499978.issue10243@psf.upfronthosting.co.za> |
| 2010年11月04日 06:19:50 | ned.deily | link | issue10243 messages |
| 2010年11月04日 06:19:49 | ned.deily | create |
|