I updated to texlive 2015 and it works, as does tlmgr. I can't read dvi's anymore (I'm assuming this is a related problem and if not will deal with it later). I have to set the path every time I run a new terminal, otherwise I get 'command not found' when I try to run tlmgr or latex. Do I need to do something additional in the terminal in order to set the path permanently? I am running the following command in terminal and it is working:
PATH=/usr/local/texlive/2015/bin/x86_64-linux:$PATH
.profile:export PATH="/usr/local/texlive/2015/bin/x86_64-linux:$PATH". When you log in again (or dosource ~/.profile) the path will be set. You can test by enteringtex --versionand seeing if you get an error message. – musarithmia Sep 10 '15 at 21:04sudo tlmgr ...it tells me "command tlmgr not found".echo $PATHconfirms the directory is set and it should be right, because I copied and pasted it from the output of the installation. I don't understand what I'm doing wrong but I always have to runsudo /full/path/to/tlmgrin order to make it work. – Andyc Apr 06 '21 at 07:55sudo echo $PATHsay? (or rather sudo su, then echo $PATH) – David Carlisle Apr 06 '21 at 08:56sudo echo %PATHdoes show the right path being there, butsudo suand theecho $PATHdoes not. So now the question would be: how do I set it forroottoo, but that I can google. – Andyc Apr 06 '21 at 09:07sudo /full/path/to/tlmgr path addafter installation to create links in/usr/local/bin. – Thomas F. Sturm Jul 06 '22 at 09:00