I am still trying to get django to present a public page from OS X via fast cgi. The current issue revolves around os x 10.4.9 using python 2. 3 as the stock installation, while django desires python 2.4. Well, at least in the version I have installed. That is, fast cgi is invoked using python 2.3, so I need to coerce this to python 2.4.
My hope is that by changing the shebangs in django to point to python 2.4 all invocations of django will use python 2.4, and allow me to get the public face going. Here is what I found in django .95.1 directory tree: django/bin/compile-messages.py:1: #!/usr/bin/env python django/bin/django-admin.py:1: #!/usr/bin/env python django/bin/make-messages.py:1: #!/usr/bin/env python django/bin/unique-messages.py:1: #!/usr/bin/env python django/conf/project_template/manage.py:1: #!/usr/bin/env python My intention is to change the shebang to #!/usr/local/python Is there any serious problem with this? - Mark --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---