I've installed and run a django app on dreamhost without problem. I recommend do the following things before install your django app.
1. Install virtualenv <http://pypi.python.org/pypi/virtualenv> to create your own Python environment. 2. Download, Compile and install Python 2.5. DH default is 2.3 and 2.4. 3. Edit ~/.bash_profile, set your Python path in env variable. 4. In .py file, modify *#!/usr/bin python *to *#!/home/your_name/python_install_directory/bin python*, especially *dispatch.fcgi* file. 5. Download, Compile and install MySQLdb<http://mysql-python.sourceforge.net/>1.2.1_p2. After that, you could install django and your django app. I used mysql backend instead of sqlite. But I think there may be no complains about your app with using Python 2.5. Highly recommend read this doc<http://www.projectsycamore.org/Installing_on_Dreamhost>to learn how to install many things on DH. Good Luck. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---