0

I have python3.7 installed on my windows 10 laptop But i need python3.6 for a specific project

Can i install it in virtualenv which will override python3.7 in that environment?

ANUBH4B4
  • 71
  • 1
  • 5
  • I would suggest that you take a look at this thread: [enter link description here](https://stackoverflow.com/a/39713544) – SpudaFett Jul 18 '20 at 12:22

1 Answers1

0

I don't know whether this may be an appropriate solution for you. But this is what I generally follow. Just install Anaconda in your system and create an environment according to your needs. For your case create an environment for Python 3.6.

conda create --name py36 python=3.6 
//This lines will create an environment named py36

You then install libraries according to your needs in that environment. You work in that environment without interfering with the libraries of the other environment. To use anaconda kindly follow Anaconda cheatsheet. You will get everything that you need.

Saurav Rai
  • 2,171
  • 1
  • 15
  • 29