PYTHON-757 Warn against installing third-party "bson" package.

Do **not** install the "bson" package. PyMongo comes with its own bson package;
doing "pip install bson" installs a third-party package that is incompatible
with PyMongo.
This commit is contained in:
A. Jesse Jiryu Davis 2014-10-08 10:14:34 -04:00
parent 2ef85956b8
commit eb25125d64
2 changed files with 8 additions and 0 deletions

View File

@ -72,6 +72,10 @@ should be able to do **easy_install pymongo** to install
PyMongo. Otherwise you can download the project source and do **python
setup.py install** to install.
Do **not** install the "bson" package. PyMongo comes with its own bson package;
doing "easy_install bson" installs a third-party package that is incompatible
with PyMongo.
Dependencies
============

View File

@ -5,6 +5,10 @@ Installing / Upgrading
**PyMongo** is in the `Python Package Index
<http://pypi.python.org/pypi/pymongo/>`_.
.. warning:: **Do not install the "bson" package.** PyMongo comes with its own
bson package; doing "pip install bson" or "easy_install bson" installs a
third-party package that is incompatible with PyMongo.
Microsoft Windows
-----------------