1

How can I downgrade the Python version from 3.8 to 3.7 in my virtual env? I have to install tensorflow 1.14, therefore I'm trying to downgrade the Python version. Is there a command for it using pip?

dspencer
  • 4,297
  • 4
  • 22
  • 43
Science Rocker
  • 7
  • 1
  • 1
  • 4

1 Answers1

4

You can install multiple Python versions and set separate environment variables for each version.

If you use Anaconda you can also create separate virtual environments with different python versions:

conda create --name myenv python=3.7

Or you can use something like pyenv-win to manage multiple Python versions.

Berkay Öztürk
  • 393
  • 2
  • 11