Changes between Version 6 and Version 7 of instal_config


Ignore:
Timestamp:
Jun 28, 2011, 7:04:28 PM (13 years ago)
Author:
dennisw
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • instal_config

    v6 v7  
    11= 1. Installation & Configuration =
    22== 1.1 Python ==
    3 This project runs on Python, so let's install that first.
     3This project runs on Python, so let's install that first. Let's also install some required packages at the same time.
    44{{{
    5 $ sudo apt-get install python
     5$ sudo apt-get install python python-pygame python-numpy
    66}}}
    7 Make sure you get Python 2.7 due to compatibility with used plugins.
     7(Make sure you get Python 2.7 due to compatibility with used plugins.)
     8Pygame is used as backend for rendering our heatmap images, and numpy is used for some calculations within the code.
    89
    9 == 1.2 Pygame ==
    10 Let's install Pygame, this will be the backend that creates our heatmap images.
    11 {{{
    12 $ sudo apt-get install python-pygame
    13 }}}
    14 
    15 == 1.3 Numpy ==
    16 Numpy is used for some calculations, so let's install that too.
    17 {{{
    18 $ sudo apt-get install python-numpy
    19 }}}
    20 
    21 == 1.4 MySQL & MySQLdb ==
     10== 1.2 MySQL & MySQLdb ==
    2211Set up a MySQL server to your liking. Make sure you get as minimal version 3.23-5.1 due to the MySQLdb support. Then create a database for django_gheat.
    2312{{{
     
    3221}}}
    3322
    34 == 1.5 Django ==
     23== 1.3 Django ==
    3524Get Django 1.3 from [http://www.djangoproject.com/download/1.3/tarball/ here] or check for a newer version [http://www.djangoproject.com/download/ here], then:
    3625{{{
     
    4029}}}
    4130
    42 == 1.6 Django extensions ==
     31== 1.4 Django extensions ==
    4332Get the Django extensions from [https://github.com/django-extensions/django-extensions here].
    4433{{{
     
    4837}}}
    4938
    50 == 1.7 Django_gheat ==
     39== 1.5 Django_gheat ==
    5140Get the latest django_gheat from the [http://svn.wirelessleiden.nl/svn/projects/Heatmap/src/ repository]
    5241{{{