我试着运行这个程序(文本处理包管理器):
tlmgr install 并得到了以下错误:
You don't have permission to change the installation in any way,
specifically, the directory /usr/local/texlive/2012/tlpkg/ is not writable.
Please run this program as administrator, or contact your local admin.所以我试着:
sudo tlmgr install并得到:
sudo: tlmgr: command not found为什么sudo找不到这个程序?我能做些什么?
发布于 2014-11-24 09:34:22
数独似乎改变了你的环境。您可以尝试使用完整路径运行该命令:
sudo /usr/bin/tlmgr install同样值得一试的是使用-E运行sudo:
sudo -E tlmgr install发布于 2014-11-24 09:35:36
试试export PATH=/usr/local/texlive/2012/bin/x86_64-linux:$PATH,然后是tlmgr install。
或者,尝试sudo sh -l -c tlmgr install
https://askubuntu.com/questions/553136
复制相似问题