Skip to content
fabiomcosta edited this page Mar 26, 2011 · 3 revisions

Installing thumbor is really easy because it supports the distutils form of packaging (http://docs.python.org/distutils/setupscript.html).

Stable

The latest stable version of thumbor is always published in the Python Package Index (http://pypi.python.org/pypi), so it can be easily installed using pip install thumbor or easy_install thumbor.

From the source of a stable release

Download the latest stable source-code version here on github or Pypi and decompress it.

In the path you decompressed, execute pip install . or python setup.py install.

From the latest version of the source

Clone thumbor's repository and install it using one of the following:

pip install git+git:/globocom/thumbor.git

or

git clone git:/globocom/thumbor.git

cd thumbor

python setup.py install
Clone this wiki locally