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

tlmgr — Manage packages and configuration options of an existing TeX Live installation. Some subcommands suc

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

Problem

How to use the tlmgr command: Manage packages and configuration options of an existing TeX Live installation. Some subcommands such as paper have their own usage documentation. More information: <https://www.tug.org/texlive/doc/tlmgr.html#NAME>.

Solution

tlmgr — Manage packages and configuration options of an existing TeX Live installation. Some subcommands such as paper have their own usage documentation. More information: <https://www.tug.org/texlive/doc/tlmgr.html#NAME>.

Install a package and its dependencies:
tlmgr install {{package}}


Remove a package and its dependencies:
tlmgr remove {{package}}


Display information about a package:
tlmgr info {{package}}


Update all packages:
tlmgr update --all


Show possible updates without updating anything:
tlmgr update --list


Start a GUI version of tlmgr:
tlmgr gui


List all TeX Live configurations:
tlmgr conf

Code Snippets

Install a package and its dependencies

tlmgr install {{package}}

Remove a package and its dependencies

tlmgr remove {{package}}

Display information about a package

tlmgr info {{package}}

Update all packages

tlmgr update --all

Show possible updates without updating anything

tlmgr update --list

Context

tldr-pages: common/tlmgr

Revisions (0)

No revisions yet.