Installation

Supported Installation Methods

MongoTor supports installation using standard Python “distutils” or “setuptools” methodologies. An overview of potential setups is as follows:

Install via easy_install or pip

When easy_install or pip is available, the distribution can be downloaded from Pypi and installed in one step:

easy_install mongotor

Or with pip:

pip install mongotor

This command will download the latest version of MongoTor from the Python Cheese Shop and install it to your system.

Installing using setup.py

Otherwise, you can install from the distribution using the setup.py script:

python setup.py install

Checking the Installed MongoTor Version

The version of MongoTor installed can be checked from your Python prompt like this:

>>> import mongotor
>>> mongotor.version 

Requirements

The following three python libraries are required.

Note

The above requirements are automatically managed when installed using any of the supported installation methods