4

我正在尝试在 ubuntu 16.4 上安装 MaryTTS。但是当我上线时

sudo -u mary git clone https://github.com/marytts/marytts.git /local/mary/marytts

致命:无法更改回“/root”:权限被拒绝

链接教程链接

4

1 回答 1

4

运行命令时,您可能在 homedir ~ (/root) 中,因此在 sudo 命令切换到 /tmp 之前,它具有更多开放权限

cd /tmp sudo -u mary git clone https://github.com/marytts/marytts.git /local/mary/marytts

于 2019-08-07T10:45:53.963 回答