Jason Ourscene wrote:
> I have some minor programming background. mainly php.
> Ive been trying to install python and django for the last 3 hours.
> I've gotten to the point where i have everything working. But when i
> run the django-admin.py script i get the following error
>
> Traceback (most recent call last):
>   File "/Library/Frameworks/Python.framework/Versions/2.4/lib/
> python2.4/site-packages/django/bin/django-admin.py", line 2, in ?
>     from django.core import management
> ImportError: No module named django.core
>
> I'm assuming it has to do something with my path, but i how can i
> debug this and get it running.

Where is Django itself installed?

The path:

  /Library/Frameworks

indicates you are perhaps using MacPorts Python. If Django was
actually installed in standard operating system Python installation
instead, it would not be found.

So, work out where Django is installed.

Also then work out which 'python' is in your PATH, it looks like
MacPorts Python at the moment.

What does 'ls -las /usr/bin/python' yield and does it make a
difference if you run django-admin explicitly with '/usr/bin/python'.

Graham
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to