Error installing mssql-tools using brew on Mac OS

I get this error when trying to install tools

Error: Formulae found in multiple taps:
* microsoft/mssql-preview/mssql-tools
* microsoft/mssql-release/mssql-tools
+7
source share
2 answers

This error is triggered if you previously listened to the preliminary repository. You can solve this problem with the following commands

brew untap microsoft mssql-preview
brew tap microsoft/mssql-release https://github.com/Microsoft/homebrew-mssql-release
brew update
brew install mssql-tools
+9
source

I had a similar problem when I try to install tools.

Error: formulas found with a few taps: * microsoft / msodbcsql / msodbcsql17 * microsoft / mssql-release / msodbcsql17

0
source

All Articles