Jason try this command and see if it works: /usr/bin/python
If that takes you into the Python interpreter then you know that Apple's python is still OK. So your only problem is that you have the directory /opt/local/bin in your $PATH ahead of the other directories that are normally in your path. The macports system automatically adds /opt/local/bin to your $PATH. Take a look here: http://guide.macports.org/#installing.shell In my case, I have these lines in my .bash_login file (located in my home directory): export PATH=/opt/local/bin:/opt/local/sbin:$PATH export MANPATH=/opt/local/share/man:$MANPATH These lines may be in any of the following files in your $HOME directory: .bash_login .bash_profile .profile Just edit them out, log out and back in, and your old $PATH should be restored to normal. --gordon --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

