The version of Python isn't related to this. The problem is that the django script you are calling isn't on your system's PATH.
If a program is on your PATH, such as the 'ls' command, you can just type 'ls' and it will run. If you type 'which ls' you will see where the program lives. You can also run it with the full path, for example "/bin/ls." Since your django-admin.py isn't on your PATH, you will either have to add it or run it by passing the full path. Example: If django-admin.py lives here: /usr/local/bin/django-admin.py You can either: export PATH=$PATH:/usr/local/bin or: python /usr/local/bin/django-admin.py Shawn -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.