vote up 2 vote down star
1

Hi,

I have updated to latest Django version 1.0.2 after uninstalling my old Django version.But now when I run django-admin.py I get the following error. How can I resolve this?

Traceback (most recent call last):
  File "C:\Python25\Lib\site-packages\django\bin\django-admin.py", line 2, in <module>
    from django.core import management
ImportError: No module named django.core
flag

29% accept rate
Looks like a 'stale path' issue. Can't say. In the Python shell, are you able to successfully do import django and/or from django.core import management? – ayaz Nov 23 '08 at 14:31
Yes I am able to do both without any error – Sirish Kumar Nov 23 '08 at 14:39
Do you have multiple Python versions installed? How are you invoking django-admin? – ayaz Nov 23 '08 at 16:52
Please run the following: import sys; print sys.path – S.Lott Nov 23 '08 at 23:34

1 Answer

vote up 1 vote down

You must make sure that django is in your PYTHONPATH.

To test, just do a import django from a python shell. There should be no output:

ActivePython 2.5.1.1 (ActiveState Software Inc.) based on
Python 2.5.1 (r251:54863, May  1 2007, 17:47:05) [MSC v.1310 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>>

If you installed django via setuptools (easy_install, or with the setup.py included with django), then check in your site-packages if the .pth file (easy-install.pth, django.pth, ...) point to the correct folder.

HIH.

link|flag
if u read the comments on his question, he already tried import djago and it works. – hasen j Nov 28 '08 at 9:00
@hasen he probably had django in his local app folder, but did not have django in his pythonpath. – apphacker Sep 20 at 6:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.