I created a virtualenv and installed Django 1.5 in it
(virtpy33) c:\django_projects>python
Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> django.VERSION
(1, 5, 1, 'final', 0)
>>> ^Z
then I created a project and ran manage.py runserver, but it says it's running version 1.4
(virtpy33) c:\django_projects>django-admin.py startproject virtres
(virtpy33) c:\django_projects>cd virtres
(virtpy33) c:\django_projects\virtres>manage.py runserver
Validating models...
0 errors found
Django version 1.4, using settings 'virtres.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
I'm new to virtualenv and Django. Is there anything else I need to do? Like edit the settings.py file or manage.py file or something?
I have Django 1.4 on my system (Windows Vista) under my Python27 directory (not in a virtual environment), but I set up a virtualenv so I could use Django 1.5 and Python 3.
Please help!