up vote 17 down vote favorite
4
share [g+] share [fb]

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
link|improve this question

1  
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 – siri 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
It has been a year and a half now, anyone came up with solution? I encountered this issue too. -_- – nil May 24 '10 at 13:46
show 1 more comment
feedback

15 Answers

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|improve this answer
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. – Bjorn Tipling Sep 20 '09 at 6:14
feedback

I encountered this problem today, it turned out that I had C:\Python26 in my path and .py files were associated to Python 3.1. Repairing the proper version of Python, either through Programs and Features or by running the .msi, will fix the associations.

link|improve this answer
This was the problem for me, too. NOTE: don't be fooled if running the python command shows version 2.X. Executing the django file could still be linked to the 3.1 executable. – Adam A Nov 21 '10 at 20:16
Note that this refers to Windows' file associations. In Windows 7 this can be changed in Control Panel > Programs > Default Programs > Associate a file... – Brian Ortiz Nov 24 '10 at 5:28
Looks like this can't be fixed manually like I thought. Command line arguments end up broken. Just reinstall Python. – Brian Ortiz Nov 24 '10 at 5:58
feedback

You can get around this problem by providing the full path to your django-admin.py file

python c:\python25\scripts\django-admin.py startproject mysite
link|improve this answer
feedback

I'm sure it's related to something incorrect in my setup, but I am having the same problem, and it works properly if I call it thusly

c:\somedir>python c:\Python26\scripts\django-admin.py startproject mysite
link|improve this answer
I had the same problem and this worked for me too... anyone knows why? – Sam Nov 15 '10 at 19:25
1  
I found the answer, I've python3 and python27 in the same machine, it's a windows one. If I execute the command c:\>python in the console, it calls python27, so django exists, but if I execute a python script this way: "c:\>test.py" it gets executed with python3, so the error (I'm used to linux, I still feel I'm lost in windows env handling) – Sam Nov 15 '10 at 19:48
feedback

This worked for me with bitnami djangostack:

python apps\django\django\bin\django-admin.py startproject mysite
link|improve this answer
feedback

The simplest solution though not the most elegant is to copy the django-admin.py from the Scripts folder. The Scripts folder will be found under your Python installation . On my computer it is in C:\Python26\Scripts. Then paste the django-admin.py into the folder you are trying to run the file from. It is true that the use of the System path will give flexibility. This is a particular solution if you are in a hurry. Then type for instance python django-admin.py startproject fluffyteaspoons and you will create the project fluffyteaspoons

link|improve this answer
feedback

It was a PYTHONPATH environment variable issue for me, as others mentioned above, but noone has really shown how to set it for people that could use the extra instruction.

I set this variable in my bashrc file in my home folder (.bashrc is the file for me since my shell is /bin/bash).

vim ~/.bashrc
export PYTHONPATH=/usr/local/python-2.7.2/lib/python2.7/site-packages:$PYTHONPATH
source ~/.bashrc

The path should be wherever your django source is. Mine is located at /usr/local/python-2.7.2/lib/python2.7/site-packages/django, so I just specified /usr/local/python-2.7.2/lib/python2.7/site-packages without the django portion.

link|improve this answer
feedback

As usual, an install script failed to set world read/execute permissions :) Do this:

sudo find  /usr/lib/python2.5/site-packages/django -type d -exec chmod go+rx {} \;
sudo find  /usr/lib/python2.5/site-packages/django -type f -exec chmod go+r {} \;
link|improve this answer
2  
i wonder if windows has sudo :D – Dmitry Shevchenko Jan 28 '10 at 14:33
feedback

If your path variables are correct and from the python shell you can do: from django.core import management , make sure you're including "python" before "django-admin.py" as such: python django-admin.py startproject thelittlethings

link|improve this answer
feedback

Thanks for posting the question and answers. I have two versions of Python installed, but root was pointing to the /usr/bin version, and I wanted to use the 2.7 version of Python in /usr/local/bin. After rebuilding/reinstalling Django and mysqldb, all is well and I'm not getting the error.

link|improve this answer
feedback

Small quick fix is just to create symlink ln -s $SOMEWHERE/lib/python2.6/site-packages/django/ ./django

link|improve this answer
feedback

I had the same problem, it was clear that I had a PYTHONPATH configuration issue. The solution is quite simple, just create a file with this name django.pth in your PYTHONHOME\Lib\site-packages directory where PYTHONHOME is the directory where Python is installed (mine is: C:\Python27). Add the following line to the django.pth file:

PYTHONHOME\Lib\site-packages\django

Of course you have to change PYTHONHOME to your Python's installation directory as I explained.

Note that you can edit the django.pth to include any directory that you want to be included in the PYTHONPATH. Actually, you can name that file as you wish, path.pth for example if you want it to be more general and to include several directory paths.

link|improve this answer
feedback

I had the same problem in windows xp. The reason was i installed multiple python versions(2.6,3.2).windows's PATH is set correctly to python26, but the .py file is associated with python32. I want the .py file is associated with python26.To solve it, the easit way is to right click the *.py(such as django-admin.py),choose "open with"->"choose program..."->"Browse..." (select c:\python26\python.ext)->"Ok". Then we can run django-admin.py in the cmd without the need for the expatiatory prefix "c:\python26\lib\site-packages\django\bin".

link|improve this answer
feedback

had the same problem

figured out that i've used a reserved word for appname )

be careful

link|improve this answer
feedback

In my case, I'm on OS X Lion and I've installed Python with homebrew I was getting the same error, but none of the solutions posted here helped me. In my case I just had to edit the script:

vim /usr/local/share/python/django-admin.py

And I noticed that the first line was wrong, as it was pointing to the system's python installation:

#!/usr/bin/python

I just modified it to point to homebrew's installation:

#!/usr/local/bin/python

And it worked :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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