Skip to content

Commit

Permalink
CIB: Prescribe Django 1.8 instead of 1.6
Browse files Browse the repository at this point in the history
We have been supporting 1.8 ever since PR #21 fixed issue #6. This commit now fixes the docs too.
  • Loading branch information
aaaaalbert authored Jul 4, 2017
1 parent 1bb8807 commit 48f0776
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Operating/CustomInstallerBuilder/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The Custom Installer Builder requires a few pieces of software to run:
* [mod_wsgi](http://www.modwsgi.org/) -- necessary for interfacing with Django code
* [OpenSSL](http://www.openssl.org/) -- necessary for `https://` support
* zip -- necessary for packaging window installers and keys
* [Django](http://www.djangoproject.com/) in version 1.6.x -- necessary to run Django code
* [Django](http://www.djangoproject.com/) in version 1.8.x -- necessary to run Django code


Python is often available on a typical Linux install. Be sure to check the version though, we need 2.7.
Expand Down Expand Up @@ -62,10 +62,10 @@ $ mkvirtualenv cib
In the future you just have to issue the shell command `workon cib` to switch to the environment or `deactivate` if you want to leave it. You know that you are *in* the virtualenv when your shell prompt is prefixed by `(cib)`. **Note: This prefix is omitted in the shell snippets in the remainder of the document.**

### Install Django
The Custom Installer Builder requires Django, a Python web framework, in version 1.6.5 or greater, which is available at [https://www.djangoproject.com/download/](https://www.djangoproject.com/download/) or through a package manager.
The Custom Installer Builder requires Django, a Python web framework, in version 1.8, which is available at [https://www.djangoproject.com/download/](https://www.djangoproject.com/download/) or through a package manager.

```sh
$ pip install django==1.6.7
$ pip install django==1.8.18
```

## Deploying and running Custom Installer Builder
Expand Down

0 comments on commit 48f0776

Please sign in to comment.