HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

tlmgr install — Install TeX Live packages. More information: <https://www.tug.org/texlive/doc/tlmgr.html#install-opt

Submitted by: @import:tldr-pages··
0
Viewed 0 times
tlmgr installcommandtexliveinstallclimorepackages

Problem

How to use the tlmgr install command: Install TeX Live packages. More information: <https://www.tug.org/texlive/doc/tlmgr.html#install-option...-pkg>.

Solution

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}}

Code Snippets

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}}

Context

tldr-pages: common/tlmgr install

Revisions (0)

No revisions yet.