Jason
Jason

Reputation: 47

How can I change my version of Python to a prior version using Anaconda?

I have Python 3.8.5 installed via Anaconda, but I want to switch it to Python 3.7.6. I tried to use conda install python=3.7.6, but after the command finished, I still get Python 3.8.5.

Upvotes: 0

Views: 208

Answers (2)

Jason
Jason

Reputation: 47

I use "conda install python=3.7 anaconda=custom" and it works.

Upvotes: 0

Shag
Shag

Reputation: 430

If you already have python version 3.7.6 installed on your system. Check this thread Change Python version

And if you do not have the version you can download from Python and then try the above thread

Upvotes: 1

Related Questions