Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django extensions error message

Tags:

django

Im a django beginner and am using it on a windows machine. Now when i run 'python manage.py runserver', im getting the following message : "Error: No module named django_extensions" Any way to fix this ?

Thank You

like image 792
ronjk Avatar asked Nov 02 '09 18:11

ronjk


2 Answers

Look inside your settings.py file under the INSTALLED_APPS setting and delete "django_extensions". Or you can install django_extensions in this environment.

like image 129
sheats Avatar answered Nov 01 '22 08:11

sheats


You're testing a Django application right ? (one you didn't write). It seems you miss some dependencies (at least this one).

You might be able to install it throw easy_install or by executing the setup.py of the following package (django-extension).

You also have to check if you have django_extension in your INSTALLED_APPS settings variable, but I'm not quite sure it is needed for django-extension..

Anyway, you might want to install this package : django-extension

like image 1
Vincent Demeester Avatar answered Nov 01 '22 10:11

Vincent Demeester