@@ -39,13 +39,13 @@ To upgrade do::
3939
4040 $ easy_install -U pymongo
4141
42- Mac OS Issues
43- -------------
42+ Mac OS Snow Leopard Issues
43+ --------------------------
4444
4545By default OSX uses `/usr/bin/easy_install ` for third party package installs.
46- This script is hardcoded to use a version of setuptools that is older than
47- the version required by pymongo for python2.7 support. You can work around
48- it like this::
46+ In OSX 10.6.x this script is hardcoded to use a version of setuptools that is
47+ older than the version required by PyMongo for python2.7 support. You can work
48+ around it like this::
4949
5050 $ easy_install -U setuptools
5151 $ python -m easy_install pymongo
@@ -54,12 +54,12 @@ To upgrade do::
5454
5555 $ python -m easy_install -U pymongo
5656
57- **Xcode 4 Users **: The Python versions shipped with OSX 10.6.x are universal
58- binaries. They support i386, PPC, and (in the case of python2.6) x86_64.
59- Xcode 4 removed support for PPC. Because of this the distutils version
60- shipped with Apple's builds of Python will fail to build the C extensions
61- if you have Xcode 4 installed. This issue may also affect some builds of
62- Python downloaded from python.org. There is a workaround::
57+ **Snow Leopard Xcode 4 Users **: The Python versions shipped with OSX 10.6.x
58+ are universal binaries. They support i386, PPC, and (in the case of python2.6)
59+ x86_64. Since Xcode 4 removed support for PPC the distutils version shipped
60+ with Apple's builds of Python will fail to build the C extensions if you have
61+ Xcode 4 installed. This issue may also affect some builds of Python downloaded
62+ from python.org. There is a workaround::
6363
6464 # For Apple-supplied Python2.6 (installed at /usr/bin/python2.6)
6565 $ env ARCHFLAGS='-arch i386 -arch x86_64' python -m easy_install pymongo
0 commit comments