I'm running on MacOS with python3.7.
When running brew install dvc or even brew upgrade dvc, my python was changed to python3.8 and it broke all my other virtual environments.
Not really a bug here but should be more careful about brew and forcing a python version.
Python has been installed as
/usr/local/bin/python3
Unversioned symlinks `python`, `python-config`, `pip` etc. pointing to
`python3`, `python3-config`, `pip3` etc., respectively, have been installed into
/usr/local/opt/python@3.8/libexec/bin
You can install Python packages with
pip3 install <package>
They will install into the site-package directory
/usr/local/lib/python3.8/site-packages
See: https://docs.brew.sh/Homebrew-and-Python
Python has been installed as
/usr/local/bin/python3
Unversioned symlinks `python`, `python-config`, `pip` etc. pointing to
`python3`, `python3-config`, `pip3` etc., respectively, have been installed into
/usr/local/opt/python@3.8/libexec/bin
You can install Python packages with
pip3 install <package>
They will install into the site-package directory
/usr/local/lib/python3.8/site-packages
I'm running on MacOS with python3.7.
When running
brew install dvcor evenbrew upgrade dvc, my python was changed to python3.8 and it broke all my other virtual environments.Not really a bug here but should be more careful about brew and forcing a python version.