How to change python version in Anaconda?

A better (recommended) alternative is to create a virtual environment of the desired Python version and then use that environment to run Tensorflow and other scripts.

To do that, you can follow the instructions given here.

BUT, if you don’t want to create a separate environment, then conda install python=<version> should do.

OR (not recommended) you can download the “latest” Anaconda installer with your required Python version bundled.

Source

Leave a Comment