我尝试使用以下命令安装Rust,这是https://rustup.rs/ for Unix推荐的命令:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
但是得到错误
error: could not amend shell profile: '/Users/XXXX/.bash_profile'
could not write rcfile file: '/Users/XXXX/.bash_profile'
Permission denied (os error 13)
但是,我使用的是zsh
,而不是bash
。
1条答案
按热度按时间xxslljrj1#
您的主目录似乎无法编辑,这会导致安装程序崩溃。
在rustup repo问题中讨论了此问题的修复方法。将
-s -- -y --no-modify-path
追加到bash
:或者,您可以为无法编辑的路径给予写权限,或者使用
sudo
运行此命令。