From 27822976ef48691c615138f2b2df5e8e219e35b3 Mon Sep 17 00:00:00 2001 From: marchersimon <50295997+marchersimon@users.noreply.github.com> Date: Tue, 21 Sep 2021 17:53:30 +0200 Subject: [PATCH] tlmgr-install: add page (#6559) --- pages/common/tlmgr-install.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/tlmgr-install.md diff --git a/pages/common/tlmgr-install.md b/pages/common/tlmgr-install.md new file mode 100644 index 000000000..b890cb0e2 --- /dev/null +++ b/pages/common/tlmgr-install.md @@ -0,0 +1,24 @@ +# tlmgr install + +> Install TeX Live packages. +> More information: . + +- 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}}`