Skip to content

Instantly share code, notes, and snippets.

@Skeeg
Skeeg / Brew Caveats
Last active February 3, 2024 00:37 — forked from ChristopherA/brew-bundle-brewfile-tips.md
Brew Bundle Brewfile Tips
==> Caveats
==> dotnet@6
For other software to find dotnet you may need to set:
export DOTNET_ROOT="/opt/homebrew/opt/dotnet@6/libexec"
dotnet@6 is keg-only, which means it was not symlinked into /opt/homebrew,
because this is an alternate version of another formula.
If you need to have dotnet@6 first in your PATH, run:
echo 'export PATH="/opt/homebrew/opt/dotnet@6/bin:$PATH"' >> ~/.zshrc