Djamo Installing / Upgrading

Djamo is in the Python Package Index.

Dependencies

Djamo depends on:

  • Pymongo
  • Sphinx(for documents)

Note

You need sphinx package only when you install Djamo from source and need to build its documents.

Note

Don’t bother about dependencies if you use pip for installing.

Installing with pip

We prefer pip to install Djamo:

$ pip install djamo

To get a specific version of Djamo:

$ pip install djamo==2.67.0

To upgrade using pip:

$ pip install --upgrade djamo

Installing with easy_install

If you must install Djamo using setuptools do:

$ easy_install djamo

To upgrade do:

$ easy_install -U djamo

Installing from source

If you’d rather install directly from the source (i.e. to stay on the bleeding edge), Install the Djamo dependencies first and the check out the latest source from github and install the driver from the resulting tree:

$ git clone git://github.com/Yellowen/Djamo.git
$ cd Djamo
$ python setup.py install

Table Of Contents

This Page