mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-22 08:02:34 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
29
tldr/tlmgr-install
Normal file
29
tldr/tlmgr-install
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
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/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}}`
|
||||
Reference in New Issue
Block a user