In this little tutorial I will install the django framework on a fedora 9 system.
I assume that you know the basics of linux and that you have apache and mysql already installed on your system.
First step is to install mod_python, mod_python is an apache module that helps us loading the python interpreter, this is going to be used by our nice little pyhton script... django.
yum install mod_python
Difficult uh?
Then we need to install the MySQL python bindings that will allow us to use the database through the django framework.
yum install MySQL-python
Now everything is ready to install django the framework itself.
yum install Django
Well that's everything you needed to know to install django on fedora, now let's go configure our new framework.
Resources:
- Wikipedia contributors. Django (web framework). Wikipedia, The Free Encyclopedia. August 1, 2008, 14:35 UTC. Available at: http://en.wikipedia.org/w/index.php?title=Django_%28web_framework%29&oldid=229231770. Accessed August 6, 2008.
- Wikipedia contributors. Python (programming language). Wikipedia, The Free Encyclopedia. August 6, 2008, 06:22 UTC. Available at: http://en.wikipedia.org/w/index.php?title=Python_%28programming_language%29&oldid=230144616. Accessed August 6, 2008.
- Wikipedia contributors. Apache HTTP Server. Wikipedia, The Free Encyclopedia. August 6, 2008, 15:30 UTC. Available at: http://en.wikipedia.org/w/index.php?title=Apache_HTTP_Server&oldid=230212005. Accessed August 6, 2008.
