how to install two development environments with different versions of Django and Python
Currently, I use the development server and I installed python 2.7.1
and Django 1.4
with the PATH environment variable
C:\Python27;C:\ Python27\Scripts
I use virtualenv
I installed the modules of the project with the command :
pip install-r requirements.txt
how to have two projects A and B ?
A: Python 2.7.1 and Django 1.4
B: Python 2.7.5 and Django 1.6