Ubuntu 和 Latex 新手在这里。我有一个非常基本的问题。
我最近使用以下代码安装了 Latex:
sudo apt-get install texlive
Run Code Online (Sandbox Code Playgroud)
但是,我想卸载它并暂时获得乳胶基础。
我尝试了以下但它不起作用:
sudo apt-get remove texlive
Run Code Online (Sandbox Code Playgroud)
dpkg --get-selections | grep tex 显示安装了许多与乳胶相关的文件。
如何删除texlive?
当您运行sudo apt-get install texlive. 当您运行该apt-get remove命令时,只会卸载 texlive 包,而不是它的依赖项。
您可以通过运行以下命令轻松删除这些额外的不需要的依赖项:
sudo apt-get autoremove
Run Code Online (Sandbox Code Playgroud)