I am trying to install the django autocomplete light examples : django autocomplete docs
with the following step (from the docs above):
virtualenv autocomplete_light_env
source autocomplete_light_env/bin/activate
git clone https://jpic@github.com/yourlabs/django-autocomplete-light.git
cd django-autocomplete-light/test_project
pip install -r requirements.txt
./manage.py runserver (also tried "python manage.py runserver")
But even on a clean environment, I am getting the following error when I try the to run the server (last step):
File "manage.py", line 8, in <module>
from django.core.management import execute_from_command_line
ImportError: No module named django.core.management
I have tried a bunch of the suggestions from stackoverflow on how to fix this but nothing seems to work.