Home > front end >  How to either downgrade or remove Python 3.9 on macOS
How to either downgrade or remove Python 3.9 on macOS

Time:09-21

I'm using macOS and need to downgrade my Python 3.9 (not conda) to 3.7.7, for which purpose I wanted to remove the version from Library/Frameworks like the former ones but didn't find there. Help would be appreciated. Thanks.

CodePudding user response:

brew uninstall --ignore-dependencies python

CodePudding user response:

If you want to set specific version, use it like this:WARNING: This command will overwrite the python version system-wise.

  • Related