Ubuntu and Latex newbie here. Very basic question I have.
I recently installed Latex using the following code:
sudo apt-get install texlive
However, I want to uninstall this and just get the latex base for now.
I tried the following but it doesn't work:
sudo apt-get remove texlive
dpkg --get-selections | grep tex
shows that a number of latex related files are installed.
How do I remove texlive?
sudo apt-get remove tex-common
resolved the problem for me.Many other dependencies also got in when you ran
sudo apt-get install texlive
. When you ran theapt-get remove
command, then only the texlive package was uninstalled, not its dependencies.You can easily remove these extra unneeded dependencies by running:
Then download and install directly from TUG. You can choose your operating system there. This has a bunch of packages and is much more complete than other distributions. Much better than
sudo apt-get install latex
.This removes all latex packages: