Detailed instructions on getting pymongo set up or installed.
Installing with Pip
To install pymongo for the first time:
pip install pymongo
Installing a specific version of pymongo:
Where X.X.X is the version to be installed
pip install pymongo==X.X.X
Upgrading existing pymongo:
pip install --upgrade pymongo
Installing with easy_install
To install pymongo for the first time:
python -m easy_install pymongo
Upgrading existing pymongo:
python -m easy_install -U pymongo