I can not install any brew packages on my mac with the following error info.
Installed on my Mac:
I was able to install Homebrew on Mojave by manually downloading the command line tools here: https://developer.apple.com/download/more/
Modify the Homebrew install script here: https://raw.githubusercontent.com/Homebrew/install/master/install
By replacing:
def should_install_command_line_tools?
return false if force_curl?
return false if macos_version < "10.9"
!File.exist?("/Library/Developer/CommandLineTools/usr/bin/git") ||
!File.exist?("/usr/include/iconv.h")
end
With this:
def should_install_command_line_tools?
return true
end
Then just execute the script.
This is a little hacky, but it worked for me and could help someone out in the beta period.