snippetbashTip
tlmgr update — Update TeX Live packages. More information: <https://www.tug.org/texlive/doc/tlmgr.html#update-optio
Viewed 0 times
commandtexupdateliveclitlmgr updatemorepackages
Problem
How to use the
tlmgr update command: Update TeX Live packages. More information: <https://www.tug.org/texlive/doc/tlmgr.html#update-option...-pkg>.Solution
tlmgr update — Update TeX Live packages. More information: <https://www.tug.org/texlive/doc/tlmgr.html#update-option...-pkg>.Update all TeX Live packages:
sudo tlmgr update --allUpdate tlmgr itself:
sudo tlmgr update --selfUpdate a specific package:
sudo tlmgr update {{package}}Update all except a specific package:
sudo tlmgr update --all --exclude {{package}}Update all packages, making a backup of the current packages:
sudo tlmgr update --all --backupUpdate a specific package without updating its dependencies:
sudo tlmgr update --no-depends {{package}}Simulate updating all packages without making any changes:
sudo tlmgr update --all --dry-runCode Snippets
Update all TeX Live packages
sudo tlmgr update --allUpdate tlmgr itself
sudo tlmgr update --selfUpdate a specific package
sudo tlmgr update {{package}}Update all except a specific package
sudo tlmgr update --all --exclude {{package}}Update all packages, making a backup of the current packages
sudo tlmgr update --all --backupContext
tldr-pages: common/tlmgr update
Revisions (0)
No revisions yet.