-3

I am a new to Python/Django

I am using python 2.7.12 in windows 10 platform.

Django version is for another project is 1.10.1

I have installed virtualenvwrapper.

Now I am in the process to setup a dev platform for a project where python 3.5 is required. I have another project where I am using py 2.7

I would like to update python version(not globally) but only for my current project.

Any help(steps or a link) is highly appreciated.

Mohamed Thasin ah
  • 10,754
  • 11
  • 52
  • 111
Prithviraj Mitra
  • 11,002
  • 13
  • 58
  • 99

1 Answers1

1

You can have multiple virtual environments . Just create one more virtual environment and activate it then install Python 3.5 and required Django .

You can download Anaconda, after the installation from cmd type this:

conda create --name environmentname python=3.5

after installation just type:

activate environmentname

then just type :

pip install django

Hope it helps.