Changes between Version 4 and Version 5 of django_gheat
- Timestamp:
- Apr 14, 2011, 4:05:03 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
django_gheat
v4 v5 10 10 11 11 == Install MySQL == 12 Set up a MySQL server to your liking. Make sure you get version 3.23-5.1 due to the MySQLdb support. Then create a database for django_gheat. 12 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. 13 {{{ 14 $ sudo apt-get install mysql-server 15 $ sudo mysqladmin password password 16 $ echo "CREATE DATABASE project_heatmap;" | mysql -uroot -ppassword 17 }}} 13 18 14 19 == Install MySQLdb == 15 20 Get the latest version from [http://sourceforge.net/projects/mysql-python/files/mysql-python/ here], make sure it's higher than 1.2.1p2 16 21 {{{ 17 $ sudo apt-get install mysql-server22 $ sudo apt-get install python-mysqldb 18 23 }}} 19 24