Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 371 Bytes

installation.rst

File metadata and controls

20 lines (14 loc) · 371 Bytes

Installation

At the command line:

$ pip install django-helpscout

Or, if you have virtualenvwrapper installed:

$ mkvirtualenv django-helpscout
$ pip install django-helpscout

Once installed, add django_helpscout to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...,
    'django_helpscout'
    ...,
)