I have been getting an error every time I try to install a new homebrew package and I found a quick and easy solution to it.
The problem looks like this:
user1$ brew install kubernetes-helm Warning: git 2.15.1 is already installed Error: Git must be installed and in your PATH! Error: The following formula: python, cannot be installed as a binary package and must be built from source. Install the Command Line Tools: xcode-select --install
Git is available on my system without issues so I was puzzled about this “invalid” error.
I found that if you set this variable:
export HOMEBREW_NO_ENV_FILTERING=1
It would allow brew to update and then install new packages without an issue.
Very simple workaround.