Previous Page Next Page

Exercises

1.Install Python 2.3 or higher. Verify that you can access the python interpreter from a console prompt by issuing the following command:
python

2.Install a Django supported SQL database. The examples in this book use the MySQL database, however, Postgre or any of the others will work as well. Appendix A, "Django Resources," lists links that you can use to get download and installation instructions for each database.
3.Download Django and install it. Make certain that you can import the Django framework into a Python interpreter using the following command in the Python interpreter:
import django

Previous Page Next Page