Home > Mobile >  How to switch python version back to 3.9
How to switch python version back to 3.9

Time:10-14

Can't figure it out. Have Macos (Monterey) and because I've forget to disable auto-update for brew install I've got python 3.10 as default version after typing python in console. How I can revert this to python3.9?

brew list | grep python                                                                                                                                                                                                                 
[email protected]
[email protected]
[email protected]

I was trying un-link [email protected] and link [email protected], can't figure it out.

CodePudding user response:

You can use pyenv to manage your python version. https://github.com/pyenv/pyenv

CodePudding user response:

python formulae are not good for your case, like Alex said, pyenv should be the way to go.

  • Related