django manage.py syncdb not working?

Posted by Diego on Stack Overflow See other posts from Stack Overflow or by Diego
Published on 2010-04-29T04:08:18Z Indexed on 2010/04/29 4:17 UTC
Read the original article Hit count: 730

Filed under:
|
|

Trying to learn Django, I closed the shell and am getting this problem now when I call python manage.py syncdb, any idea what happened?:

I've already set up a db. I have manage.py set up in the folder django_bookmarks. What's up here?

Traceback (most recent call last): File "manage.py", line 2, in from django.core.management import execute_manager ImportError: No module named django.core.management my-computer:~/Django-1.1.1/django_bookmarks mycomp$ export PATH=/Users/mycomp/bin:$PATH my-computer:~/Django-1.1.1/django_bookmarks mycomp$ python manage.py syncdb Traceback (most recent call last): File "manage.py", line 2, in from django.core.management import execute_manager ImportError: No module named django.core.management my-computer:~/Django-1.1.1/django_bookmarks mycomp$

© Stack Overflow or respective owner

Related posts about django

Related posts about manage.py