mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 02:06:00 +02:00
tlmgr-install: add page (#6559)
This commit is contained in:
parent
c5e894b788
commit
27822976ef
1 changed files with 24 additions and 0 deletions
24
pages/common/tlmgr-install.md
Normal file
24
pages/common/tlmgr-install.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# 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}}`
|
Loading…
Add table
Reference in a new issue