Install

django-ticketoffice is open-source software, published under BSD license. See License for details.

If you want to install a development environment, you should go to Contributing documentation.

Prerequisites

As a library

In most cases, you will use django-ticketoffice as a dependency of your Django project. In such a case, you should add django-ticketoffice in your main project’s requirements. Typically in setup.py:

from setuptools import setup

setup(
    install_requires=[
        'django-ticketoffice',
        #...
    ]
    # ...
)

Then when you install your main project with your favorite package manager (like pip [2]), django-ticketoffice will automatically be installed.

Standalone

You can install django-ticketoffice with your favorite Python package manager. As an example with pip [2]:

pip install django-ticketoffice

Check

Check django-ticketoffice has been installed:

python -c "import django_ticketoffice;print(django_ticketoffice.__version__)"

You should get django_ticketoffice‘s version.

References

[1]http://python.org
[2](1, 2) https://pypi.python.org/pypi/pip/