Forced upgrades of Python version no thanks #250
Replies: 2 comments 10 replies
-
So... |
Beta Was this translation helpful? Give feedback.
-
Thanks, those commands will spare me from doing it manually! :-) And I maintain I also maintain it is improper for Homebrew to upgrade Python versions other than microversions behind your back: When I have done Linux distros don't do it that way either. Debian & derivatives use the I hope the Homebrew crew will be able to work out a better way to manage this. |
Beta Was this translation helpful? Give feedback.
-
Whenever I do a
brew upgrade
homebrew currently installs Python 3.9 as the default/usr/local/bin/python3
but since I am using lots of modules from PyPi that are not upgraded (and indeed some aren't properly ported to 3.9 yet) I don't want that. I am in the middle of a project and I am not ready to upgrade Python.I think it is improper of homebrew to force an upgrade of the Python version upon you. The right way to do this is to add a Python environment management system that lets you choose which version of Python is your main one, for example
pyenv
or something similar. It could also be a brew command. This should not be done automatically at upgrade.Beta Was this translation helpful? Give feedback.
All reactions