Mac OS X 安装Golang
时间:2022-04-03 09:42
1.确保Mac OS X 安装了Git,Hg,在Mac OS X 10.8+下面安装Xcode CommandLine Tools就可以了,10.9以上安装Xcode就包含了Git工具,hg请安装SourceTree,这个Git GUI工具包含了Mercurial工具
2.下载安装go1.3.1.darwin-amd64-osx10.8.pkg
3.安装Sublime Text,一次安装插件,GoSublime,配置GoSublime-Settings-User文件,切记不要改动任何Default文件,例如:GoSublime-Setting-User写入
{
"env":
{
"GOPATH": "$HOME/Documents/GoPATH/",
"GOROOT": "/usr/local/go"
}
}
4.设置GOPATH
5.设置GOPATH注意事项,在当前用户Home目录下面新建.bash_profile文件
写入
#This is my personal bash_profile,when loaded at login.
#===2014-09-04===
#GOPATH
export GOPATH=$HOME/Documents/GoPATH
#PATH
export PATH=$PATH:$GOPATH/bin
然后执行source .bash_profile
6.OK 输入go env就可以看到正确的go环境了
7.可以输入export查看当前用户的所有shell环境配置
使用Google示例代码或者安装本地gotour需要使用到hg命令,Mac OS X默认没有安装可以使用Homebrew安装,
# Mac OS (homebrew) $ brew install mercurial 下面是其他OS的安装方式
# Debian/Ubuntu $ apt-get install mercurial # Fedora $ yum install mercurial # Gentoo $ emerge mercurial # Mac OS (homebrew) $ brew install mercurial # FreeBSD $ cd /usr/ports/devel/mercurial $ make install # Solaris 11 Express $ pkg install SUNWmercurial Mercurial SCM官方网站 :http://mercurial.selenic.com/