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:
parent
2ef85956b8
commit
eb25125d64
@ -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
|
||||
============
|
||||
|
||||
|
||||
@ -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
|
||||
-----------------
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user