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

tlmgr repository — Manage repositories of a TeX Live installation. More information: <https://www.tug.org/texlive/doc/t

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

Problem

How to use the tlmgr repository command: Manage repositories of a TeX Live installation. More information: <https://www.tug.org/texlive/doc/tlmgr.html#repository>.

Solution

tlmgr repository — Manage repositories of a TeX Live installation. More information: <https://www.tug.org/texlive/doc/tlmgr.html#repository>.

List all configured repositories and their tags (if set):
tlmgr repository list


List all packages available in a specific repository:
tlmgr repository list {{path|url|tag}}


Add a new repository with a specific tag (the tag is not required):
sudo tlmgr repository add {{path|url}} {{tag}}


Remove a specific repository:
sudo tlmgr repository remove {{path|url|tag}}


Set a new list of repositories, overwriting the previous list:
sudo tlmgr repository set {{path|url|tag}}#{{tag}} {{path|url|tag}}#{{tag}} {{...}}


Show the verification status of all configured repositories:
tlmgr repository status

Code Snippets

List all configured repositories and their tags (if set)

tlmgr repository list

List all packages available in a specific repository

tlmgr repository list {{path|url|tag}}

Add a new repository with a specific tag (the tag is not required)

sudo tlmgr repository add {{path|url}} {{tag}}

Remove a specific repository

sudo tlmgr repository remove {{path|url|tag}}

Set a new list of repositories, overwriting the previous list

sudo tlmgr repository set {{path|url|tag}}#{{tag}} {{path|url|tag}}#{{tag}} {{...}}

Context

tldr-pages: common/tlmgr repository

Revisions (0)

No revisions yet.