Changes between Version 6 and Version 7 of instal_config
- Timestamp:
- Jun 28, 2011, 7:04:28 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
instal_config
v6 v7 1 1 = 1. Installation & Configuration = 2 2 == 1.1 Python == 3 This project runs on Python, so let's install that first. 3 This project runs on Python, so let's install that first. Let's also install some required packages at the same time. 4 4 {{{ 5 $ sudo apt-get install python 5 $ sudo apt-get install python python-pygame python-numpy 6 6 }}} 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.) 8 Pygame is used as backend for rendering our heatmap images, and numpy is used for some calculations within the code. 8 9 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 == 22 11 Set 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. 23 12 {{{ … … 32 21 }}} 33 22 34 == 1. 5Django ==23 == 1.3 Django == 35 24 Get 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: 36 25 {{{ … … 40 29 }}} 41 30 42 == 1. 6Django extensions ==31 == 1.4 Django extensions == 43 32 Get the Django extensions from [https://github.com/django-extensions/django-extensions here]. 44 33 {{{ … … 48 37 }}} 49 38 50 == 1. 7Django_gheat ==39 == 1.5 Django_gheat == 51 40 Get the latest django_gheat from the [http://svn.wirelessleiden.nl/svn/projects/Heatmap/src/ repository] 52 41 {{{