@@ -41,7 +41,7 @@ to install pymongo on platforms other than Windows::
4141
4242To get a specific version of pymongo::
4343
44- $ pip install pymongo==2.6.3
44+ $ pip install pymongo==2.8
4545
4646To upgrade using pip::
4747
@@ -198,7 +198,7 @@ PyMongo source directory::
198198 $ python setup.py bdist_egg
199199
200200The egg package can be found in the dist/ subdirectory. The file name will
201- resemble “pymongo-2.6.3 -py2.7-linux-x86_64.egg” but may have a different name
201+ resemble “pymongo-3.0b1 -py2.7-linux-x86_64.egg” but may have a different name
202202depending on your platform and the version of python you use to compile.
203203
204204.. warning ::
@@ -211,7 +211,7 @@ depending on your platform and the version of python you use to compile.
211211Copy this file to the target system and issue the following command to install the
212212package::
213213
214- $ sudo easy_install pymongo-2.6.3 -py2.7-linux-x86_64.egg
214+ $ sudo easy_install pymongo-3.0b1 -py2.7-linux-x86_64.egg
215215
216216Installing a beta or release candidate
217217--------------------------------------
@@ -222,9 +222,9 @@ but can be found on the
222222`github tags page <https://github.com/mongodb/mongo-python-driver/tags >`_.
223223They can be installed by passing the full URL for the tag to pip::
224224
225- $ pip install https://github.com/mongodb/mongo-python-driver/archive/3.0b0 .tar.gz
225+ $ pip install https://github.com/mongodb/mongo-python-driver/archive/3.0b1 .tar.gz
226226
227227or easy_install::
228228
229- $ easy_install https://github.com/mongodb/mongo-python-driver/archive/3.0b0 .tar.gz
229+ $ easy_install https://github.com/mongodb/mongo-python-driver/archive/3.0b1 .tar.gz
230230
0 commit comments