Files
cheatsheet-tldr/tldr/brew-install
2025-07-24 00:22:02 +00:00

22 lines
586 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# brew install
> Install a Homebrew formula or cask.
> More information: <https://docs.brew.sh/Manpage#install-options-formulacask->.
- Install a formula/cask:
`brew install {{formula|cask}}`
- Build and install a formula from source (dependencies will still be installed from bottles):
`brew install {{[-s|--build-from-source]}} {{formula}}`
- Download the manifest, print what would be installed but don't actually install anything:
`brew install {{[-n|--dry-run]}} {{formula|cask}}`