MacにRustをインストールする

MacにRustをインストールする

まず MacにRustがインストールされていることを確認します

以下のコマンドで 各種verがインストールされいれば問題ないため,次に進んでください

rustc --version

インストールは以下のコマンドで行います

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Permissionのエラー対応

この時に以下のエラーが出た場合は,ファイル権限周りがうまくいっていないので変更していきます

エラー内容

error: could not amend shell profile: '/Users/name/.bash_profile': could not write rcfile file: '/Users/name/.bash_profile': Permission denied (os error 13)
(base)

自分の場合は,以下で所有者を確認したところ rootになっていました。

ls -l ~/.bash_profile

そこで所有者を変更します

sudo chown name:staff ~/.bash_profile

次に ファイル権限を変更します

chmod 644 ~/.bash_profile

zshを使っている場合も同様に対応します