Changes between Version 29 and Version 30 of SetupOnTiger


Ignore:
Timestamp:
Sep 8, 2008, 4:52:53 AM (16 years ago)
Author:
Bess
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SetupOnTiger

    v29 v30  
    8181Written by Bess Ho 09.08.08
    8282
    83 OSX 10.5 includes Python 2.5 that support Django 1.0. Do not use Mac port to install Python2.5. Mac port Python 2.5 won't support Django 1.0.
     83OSX 10.5 includes Python 2.5 that support Django 1.0. Do not use Mac port to install Python2.5. Mac port Python 2.5 won't support Django 1.0. Python 2.5 includes SQLite3.
    8484
    8585'''Get the latest official version'''
     
    9393sudo python setup.py install
    9494
     95'''View SQLite3 Database'''
    9596
     97cd into the directory where your Django 1.0 project is created. Run sqlite3 and select the database name sample.db. Use .schema to view the database statements.
     98
     99$ sqlite3 sample.db
     100
     101$ .schema
Back to Top