File: installing.rst

package info (click to toggle)
thumbor 7.7.7-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 40,556 kB
  • sloc: xml: 295,435; python: 18,673; ansic: 1,479; makefile: 360; sh: 27
file content (47 lines) | stat: -rw-r--r-- 1,347 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Installing
==========

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

.. warning::
    Thumbor v7.0.0 and later only supports python 3.7+.
    This change was important to improve our codebase and ensure
    it's easier to change in future releases.
    More breaking changes will come, but we do not anticipate any
    as big as this one. Please refer to
    `release notes <https://github.com/thumbor/thumbor/releases>`_
    for details on how to upgrade.

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://github.com/thumbor/thumbor.git``

or

.. code:: bash

    git clone git://github.com/thumbor/thumbor.git

    cd thumbor

    python setup.py install