I am new in web programming, so just starting with Python and Django. I am working on Windows 7 and already have Python 2.7 and Django 1.6.5 for a project I am working on.
For another project I need a virtual environment with Python 3.4 and Django 1.7 so I did:
- install Python 3.4 in another folder (c:\python34)
create a folder for my new project (my_proj) and here executed:
> c:\python34\python -m venv py34env
> py34env/bin/activate
> django-admin.py startproject --template='my proj github archive' env my_proj
> cd my_proj
> pip install -r requirements.txt
> cd src
> python manage.py migrate
The file requirements.txt contains among other packages Django 1.7
Now command manage.py migrate gives an error: it seems it doesn't find Django. If I do django --version I get no result, but if I do pip freeze it shows me Django 1.7.
Any help will be apreciated, Thanks a lot, Dani