tldr/pages/common/tlmgr-install.md

25 lines
541 B
Markdown
Raw Normal View History

2021-09-21 16:53:30 +01:00
# tlmgr install
> Install TeX Live packages.
> More information: <https://www.tug.org/texlive/tlmgr.html>.
- 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}}`