Files
cheatsheet-tldr/tldr/tlmgr-install
2025-05-10 00:19:02 +00:00

30 lines
660 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# tlmgr install
> Install TeX Live packages.
> More information: <https://www.tug.org/texlive/doc/tlmgr.html#install-option...-pkg>.
- Install a package and its dependencies:
`sudo tlmgr install {{package}}`
- Reinstall a package:
`sudo tlmgr install --reinstall {{package}}`
- Simulate installing a package without making any changes:
`tlmgr install --dry-run {{package}}`
- Install a package without its dependencies:
`sudo tlmgr install --no-depends {{package}}`
- Install a package from a specific file:
`sudo tlmgr install --file {{path/to/package}}`