@@ -41,7 +41,7 @@ to install pymongo on platforms other than Windows::
41
41
42
42
To get a specific version of pymongo::
43
43
44
- $ pip install pymongo==2.6.3
44
+ $ pip install pymongo==2.8
45
45
46
46
To upgrade using pip::
47
47
@@ -198,7 +198,7 @@ PyMongo source directory::
198
198
$ python setup.py bdist_egg
199
199
200
200
The 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
202
202
depending on your platform and the version of python you use to compile.
203
203
204
204
.. warning ::
@@ -211,7 +211,7 @@ depending on your platform and the version of python you use to compile.
211
211
Copy this file to the target system and issue the following command to install the
212
212
package::
213
213
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
215
215
216
216
Installing a beta or release candidate
217
217
--------------------------------------
@@ -222,9 +222,9 @@ but can be found on the
222
222
`github tags page <https://github.com/mongodb/mongo-python-driver/tags >`_.
223
223
They can be installed by passing the full URL for the tag to pip::
224
224
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
226
226
227
227
or easy_install::
228
228
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
230
230
0 commit comments