我试图运行这个程序(texlive 包管理器):
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 找不到程序?我能做些什么呢?
Sudo 似乎改变了你的环境。您可以尝试使用完整路径运行命令:
同样值得一试的是运行 sudo
-E
:尝试
export PATH=/usr/local/texlive/2012/bin/x86_64-linux:$PATH
然后tlmgr install
。或者,尝试
sudo sh -l -c tlmgr install