https://blog.csdn.net/hlllmr1314/article/details/52228672bash
在/etc/profile中配置了go語言環境變量:spa
1 export GOROOT=/usr/local/go 2 export PATH=$PATH:$GOROOT/bin
在當前的terminal執行go version是沒問題的,切換到另外一個terminal窗口去執行,卻發現報錯:zsh: command not found: go。.net
解決方案:code
一、將配置信息配置在 ~/.zshrc文件中blog
二、添加source ~/.bash_profile到~/.zshrc文件中,這樣~/.bash_profile配置的環境變量一樣有效terminal