PYTHON-2187 Remove easy_install from documentation (#2033)

This commit is contained in:
Jeffrey A. Clark 2024-12-20 12:58:08 -05:00 committed by GitHub
parent d2fe1ed154
commit 2d21035396
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 9 deletions

View File

@ -139,7 +139,7 @@ Unix
~~~~
To authenticate using GSSAPI you must first install the python `kerberos`_ or
`pykerberos`_ module using easy_install or pip. Make sure you run kinit before
`pykerberos`_ module using pip. Make sure you run kinit before
using the following authentication methods::
$ kinit mongodbuser@EXAMPLE.COM

View File

@ -6,7 +6,7 @@ Installing / Upgrading
<http://pypi.python.org/pypi/pymongo/>`_.
.. warning:: **Do not install the "bson" package from pypi.** PyMongo comes
with its own bson package; doing "pip install bson" or "easy_install bson"
with its own bson package; doing "pip install bson"
installs a third-party package that is incompatible with PyMongo.
Installing with pip
@ -134,7 +134,7 @@ Python to fail to build the C extensions if you have Xcode 4 installed. There
is a workaround::
# For some Python builds from python.org
$ env ARCHFLAGS='-arch i386 -arch x86_64' python -m easy_install pymongo
$ env ARCHFLAGS='-arch i386 -arch x86_64' python -m pip install pymongo
See `http://bugs.python.org/issue11623 <http://bugs.python.org/issue11623>`_
for a more detailed explanation.
@ -152,15 +152,9 @@ This may cause C extension builds to fail with an error similar to::
There are workarounds::
# Apple specified workaround for Xcode 5.1
# easy_install
$ ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future easy_install pymongo
# or pip
$ ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install pymongo
# Alternative workaround using CFLAGS
# easy_install
$ CFLAGS=-Qunused-arguments easy_install pymongo
# or pip
$ CFLAGS=-Qunused-arguments pip install pymongo