1.確保Mac OS X 安裝了Git,Hg,在Mac OS X 10.8+下面安裝Xcode CommandLine Tools就能夠了,10.9以上安裝Xcode就包含了Git工具,hg請安裝SourceTree,這個Git GUI工具包含了Mercurial工具shell
2.下載安裝go1.3.1.darwin-amd64-osx10.8.pkgbash
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文件code
寫入homebrew
#This is my personal bash_profile,when loaded at login.get
#===2014-09-04===it
#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/