No Module named django.core - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T06:57:10Z http://stackoverflow.com/feeds/question/312549 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/312549/no-module-named-django-core 2 No Module named django.core Sirish Kumar 2008-11-23T14:09:24Z 2008-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 &lt;module&gt; from django.core import management ImportError: No module named django.core </code></pre> http://stackoverflow.com/questions/312549/no-module-named-django-core/325295#325295 1 Answer by Fil for No Module named django.core Fil 2008-11-28T08:40:35Z 2008-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. &gt;&gt;&gt; import django &gt;&gt;&gt; </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>