watame / setup_for_mac

Mac設定用Ansibleレポジトリ
5 stars 0 forks source link

Brewでインストールしたツールのパス変更の自動化 #5

Closed watame closed 2 years ago

watame commented 2 years ago

ToDo

watame commented 2 years ago

AnsibleでShellコマンドの実行方法をチェック

今回は環境変数をいじりたいので、shell を利用する。 https://zenn.dev/suiudou/articles/0cb41c3ec59975

watame commented 2 years ago

Brew経由で呼び出す必要のあるプログラムのパスを変更する

下記の記事を参考としたが、brewが利用されているパスは異なるため、下記のように利用するパスを変更する。

export PATH="/usr/local/bin:$PATH"'

export PATH="/opt/homebrew/bin:$PATH"'

https://zenn.dev/nemo_ensi/articles/b9876e7374e0044582ee

watame commented 2 years ago

色々調べていたけど、homebrewがインストールされた時点で$PATHが以下のようになっていたので、対応不要だと思いました。

$ echo $PATH
/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/homebrew/bin:/opt/homebrew/sbin
watame commented 2 years ago

普通にTerminalを起動し直したら、GitもBrew経由で呼び出せるようになった。

$ which git
/opt/homebrew/bin/git
$ git --version
git version 2.36.1