我是 Ubuntu 新手(我使用的是 Ubuntu 18.04),我尝试安装 Texstudio 三天了,但一直有问题。我尝试了在互联网上找到的所有方法,但都不起作用。我真的感到绝望。你能帮我删除与 LaTeX 相关的所有内容吗(因为我不确定我是否卸载了所有内容 - Texmaker、Texstudio、Texlive 和 Miktex)并安装 Texstudio?我知道如何使用终端。非常感谢。
答案1
删除目前安装的所有 TeXLive 和 TeXStudio
sudo apt remove texlive-full
sudo apt remove texstudio
然后在终端中运行:
wget https://github.com/scottkosty/install-tl-ubuntu/raw/master/install-tl-ubuntu
然后
chmod +x ./install-tl-ubuntu
然后
sudo ./install-tl-ubuntu
这需要一些时间...之后
sudo apt install texstudio
现在您可以从菜单启动 TeXstudio。您可以通过运行来更新您的 TeX 发行版
sudo tlmgr --self --all update
如果你想摆脱 sudo 然后运行
sudo chown -R <USER> /usr/local/texlive
然后您可以以用户身份运行所有操作,这简化了一些事情。