在macOS 上為ZSH 設定go install
執行go env 時遇到「zsh: command not found:
執行go env 時遇到「zsh: command not found: gogo」錯誤表示存在問題與您的ZSH 環境的配置。罪魁禍首在於設定檔:.bash_profile 和 .zshrc。 對於macOS,如果使用套件安裝程式而不是Homebrew 安裝Go,則ZSH 的.zshrc 中的正確配置應該是:export GOPATH=$HOME/go export GOROOT=/usr/local/go export GOBIN=$GOPATH/bin export PATH=$PATH:$GOPATH export PATH=$PATH:$GOROOT/bin
以上是如何修復 macOS 上的'zsh:找不到命令:go”錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!