InstallationΒΆ

Warning

This is a development version, so it is strongly recommend to perform the installation on an isolated virtualenv.

The current version overwrites existing files silently. Make sure that you have an updated backup of your files before playing with dja_skel.

First at all install virtualenv:

$ sudo apt-get install python-virtualenv

Then create and activate a new virtualenv:

$ cd ~
$ mkdir virtualenvs
$ cd virtualenvs
$ virtualenv --no-site-packages dja_skel
$ source dja_skel/bin/activate

And finally install dja_skel:

(dja_skel)$ pip install dja_skel

This will download dja_skel and its dependencies (namely django, cheetah, django-crispy-forms and django-tables2) from pypi and install them in the virtualenv.

Project Versions

Previous topic

Introduction

Next topic

Tutorial

This Page