I'm running python2.6 and django 1.3 I've installed django_extensions using easy_install and verified it as shown. Directory of C:\alltools\python26\Lib\site-packages
08/16/2012 07:59 AM <DIR> . 08/16/2012 07:59 AM <DIR> .. 03/12/2012 11:19 AM <DIR> django 05/28/2011 10:47 AM 1,255 Django-1.3-py2.6.egg-info 08/16/2012 07:59 AM <DIR> django_extensions-0.9-py2.6.egg And via python as shown below C:\alltools\python26>python Python 2.6.6 (r266:84297, Aug 24 2010, 18:46:32) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import django_extensions >>> dir(django_extensions) ['VERSION', '__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__', '__version__', 'str_version'] I think my problem is in my settings.py file which I configured as shown based on the video http://ericholscher.com/blog/2008/sep/12/screencast-django-command-extensions/ I have googled for the correct notation, but with no success and the following just "feels" wrong. I suspect I'm mixing "old" and new configuration styles based on older documentation but have found nothing better. INSTALLED_APPS = ( # 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django_extensions', ... my stuff When I try to use the extensions, they are not there and manage help just shows the normal default commands :\all\projects\AccTherapySchedulerServer\AccTherapySite>\alltools\python26\python manage.py graph_models -a -g -o test.png nknown command: 'graph_models' -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.