Is there a way to dump the list of installed package to be used as a basis for a new installation with tlmgr ? The same way pip works:
pip freeze > requirements.txt
then later, after a fresh git clone
pip install -r requirements.txt
Is there a way to dump the list of installed package to be used as a basis for a new installation with tlmgr ? The same way pip works:
pip freeze > requirements.txt
then later, after a fresh git clone
pip install -r requirements.txt
tlmgron each line of the package list file, which will install all packages on a new system. Alternatively,tlmgraccepts multiple packages as arguments, so you can also write something yourself that generates a command liketlmgr install package_1 package_2 ... package_nand run that. – Marijn Feb 12 '20 at 12:37tlmgrknew how to do it. – Luke Skywalker Feb 12 '20 at 12:40