mac 安装调试golang语言

显然随着docker的流行 带动了golang语言的发展,刚开始还看不上,上次听说好多公司使用go来写后端,照实被惊讶到了,今天主要就开始在自己电脑安装golang ,并尝试运行它。

首先现在golang 的mac对应的sdk,http://www.golangtc.com/download

然后安装 ,安装 非常简单,连环境变量都被配置了,但是 GOROOT 和GOPATH [GO 的工作目录]需要自己手动配置环境变量。

export GOROOT =/usr/local/go

export GOPATH=/Users/muller/Documents/gowork  ,/etc/profile  ~/.bash_profile  并都添加到PATH环境变量中

并在gowork中创建三个目录 src/   pkg/     bin/,

配置好了,还要安装  不然无法下载第三方包


golang.org/x/crypto/bcrypt

https://github.com/golang/crypto

http://stackoverflow.com/questions/31334197/failed-to-install-golang-org-x-crypto-bcrypt

Create foldersrc/golang.org/x/into youGOPATH.

mkdir-p $GOPATH/src/golang.org/x/

Then clonecryptofrom github.

cd $GOPATH/src/golang.org/x/git clone [email protected]:golang/crypto.git

想做 go 的web开发 需要安装 hoisie

https://github.com/hoisie/web

IDE 建议使用  INTELLIJ 的golang编译器 非常好用 ,是预览版,下载不是公开的

https://www.jetbrains.com/go/

http://download.jetbrains.com/go/gogland-163.10154.18.dmg

http://download.jetbrains.com/go/gogland-163.10154.18.exe

http://download.jetbrains.com/go/gogland-163.10154.18.tar.gz

除夕了 ,祝福大家新年快乐

你可能感兴趣的:(mac 安装调试golang语言)