heya,
I original thought to post this in the django-extensions group, however that seems like a fairly low-traffic group, so I thought I'd post here in the hopes somebody here might be able to figure it out.
Basically, I've installed django-extensions via Pip
pip install django-extensions
Whenever I try to run any manage.py commands in my project, I get an error:
Error: No module named django_extensions
In my settings.py, I have:
INSTALLED_APPS = (
....
'django_extensions',
In the Python shell,I can do a "import django_extensions" and it imports fine with no error messages.
Not sure what's going on here?
I also tried with django-extensions from Github, same error.
Cheers,
Victor