[Django]-Manage.py runserver in virtualenv using wrong django version

8👍

When you run manage.py on its own, Windows is pulling it off of the main Windows PATH, and then running it off of the main Windows association with Python, which is your default installed version of Python, and thus outside your virtualenv.

Inside your virtualenv, try running python manage.py runserver and see what happens.

Leave a comment