We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apple's pre-installed sqlite3 preempts the Homebrew installation in PATH:
➜ ~ brew install sqlite Warning: sqlite 3.38.2 is already installed and up-to-date. To reinstall 3.38.2, run: brew reinstall sqlite ➜ ~ source ~/.zshrc ➜ ~ sqlite3 --version 3.32.3 2020-06-18 14:16:19
I found a solution that worked for me here:
ln -s /usr/local/opt/sqlite/bin/sqlite3 /usr/local/bin/
This links /usr/local/bin to Homebrew's sqlite3.
/usr/local/bin
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Homebrew does not update sqlite3
Apple's pre-installed sqlite3 preempts the Homebrew installation in PATH:
I found a solution that worked for me here:
ln -s /usr/local/opt/sqlite/bin/sqlite3 /usr/local/bin/
This links
/usr/local/bin
to Homebrew's sqlite3.The text was updated successfully, but these errors were encountered: