1.0 查看是否存在bash_profile
cd ~/.bash_profile
2.0 如果不存在则创建bash_profile Mac环境配置文件
touch ~/.bash_profile
3.0 打开bash_profile
open -t ~/.bash_profile
4.0 添加go 环境变量:(等于号后面的为你的项目存储目录)
GOPATH=website/apple/apps
5.0 warning:如果因为创建bash_profile 使命令行ls命令失效而造成go语言无法安装请关注
5.1 如上打开bash_profile 并加入环境变量
export PATH="/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin"
5.2 重启命令行工具 删除 bash_profile 关闭命令行 删除 go 文件重新安装在(/usr/local/)下
rm ~/.bash_profile
5.3 安上文配置方法重新配置即可
6 配置好项目目录后需要添加三个文件夹
$GOPATH 目录约定有三个子目录:
- src 存放源代码(比如:.go .c .h .s等)
- pkg 编译后生成的文件(比如:.a)
- bin 编译后生成的可执行文件(为了方便,可以把此目录加入到 $PATH 变量中,如果有多个gopath,那么使用
${GOPATH//://bin:}/bin
添加所有的bin目录)