No Module named django.core - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T06:57:10Zhttp://stackoverflow.com/feeds/question/312549http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/312549/no-module-named-django-core2No Module named django.coreSirish Kumar2008-11-23T14:09:24Z2008-11-28T08:40:35Z
<p>Hi,</p>
<p>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?</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/312549/no-module-named-django-core/325295#3252951Answer by Fil for No Module named django.coreFil2008-11-28T08:40:35Z2008-11-28T08:40:35Z<p>You must make sure that django is in your PYTHONPATH.</p>
<p>To test, just do a <code>import django</code> from a python shell. There should be no output:</p>
<pre><code>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
>>>
</code></pre>
<p>If you installed django via <code>setuptools</code> (<code>easy_install</code>, or with the <code>setup.py</code> included with django), then check in your <code>site-packages</code> if the <code>.pth</code> file (<code>easy-install.pth</code>, <code>django.pth</code>, ...) point to the correct folder.</p>
<p>HIH.</p>