I've currently got a large-scale app in development on CentOS (but to be deployed on Red Hat), but it's running on Python 2.3. Aside from your Python install, there are also a few pre-requisites you might need to install alongside Django, such as MySQL-Python.
Don't know if it's any help, but here's a quick log from when I last did the install (after source installs of Apache and MySQL): su cd /usr/lib/python2.3/site-packages/ svn co http://code.djangoproject.com/svn/django/trunk/ django_src ln -s `pwd`/django_src/django /usr/lib/python2.3/site-packages/django cp django_src/django/bin/django-admin.py /usr/bin/ yum install mod_python cp /usr/lib/httpd/modules/mod_python.so /opt/apache/modules/ yum install python-devel exit wget http://downloads.sourceforge.net/mysql-python/MySQL-python-1.2.1_p2.tar.gz gzip -d MySQL-python-1.2.1_p2.tar.gz tar xvf MySQL-python-1.2.1_p2.tar cd MySQL-python-1.2.1_p2 python setup.py build su python setup.py install cd /opt/apache [Insert: LoadModule python_module modules/mod_python.so ] bin/apachectl restart exit [Copy textile.py to home dir] su cp textile.py /usr/lib/python2.3/site-packages/ On 27/01/07, Noah Gift <[EMAIL PROTECTED]> wrote: > Anyone have any good tips on Cent OS deployments? I would like to use > python 2.5, but it is a little tricky with Cent... > > > Thanks, > > > Noah Gift > > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---