Go学习-GoPath设置与第一个Go程序(一) 1. Go安装略2. 设置GoPathGOPATH是一个环境变量,用来表明你写的go项目的存放路径。2.1 Mac2.1.1 Bashvim ~/.bash_profileexport GOPATH="/Users/zhangsan/go"source ~/.bash_profile2.1.2 Zshvim ~/.zshrcexport GOPATH="/User……