虽然,今天被公司裁了,但是生活还是得继续,学习也是得继续,哈!下面是今天的学习内容:
Win7(64)安装revel框架
Revel,一个高生产力的 Go 语言 Web 框架!
1、安装 Revel 框架
cmd执行:go get github.com/revel/revel
执行它之前,先需一下操作:
(1)安装 Git ,添加(D:\Program Files (x86)\Git\bin;)到环境变量Path中
下载地址:http://git-scm.com/book/en/v2/Getting-Started-Installing-Git
我的下载:Git-1.9.4-preview20140929.exe
(2)安装 Mercurial,添加(D:\Program Files\Mercurial;)到环境变量Path中
下载地址:http://mercurial.selenic.com/wiki/Download
我的下载:Mercurial-3.2.1-x64.exe
(3)安装第三方包,由于code.google.com被墙,导致一些托管在code.google.com上面的包go get不下来,手动下载
下载地址:http://www.golangtc.com/static/download/packages/code.google.com.p.go.net.tar.gz
我的下载:code.google.com.p.go.net.tar.gz
我的操作:解压到当前文件夹,得到 code.google.com 目录,把它拷贝到 E:\gocode\src 目录里,cmd执行:go install code.google.com/p/go.net/websocket
注:具体参考http://www.golangtc.com/download/package
2、安装 Revel 命令行工具
cmd执行:go get github.com/revel/cmd/revel
执行后,添加(E:\gocode\bin;)到环境变量Path中。
注:我的GOPATH是 E:\gocode 。
3、创建 Revel 应用
cmd执行:revel new myapp
cmd执行:revel run myapp
注:不要忘记执行“ revel run myapp ”,我就是忘记执行它,结果http://localhost:9000/无法连接。找了很久才发现是忘记执行它了。呵呵。
有疑问加站长微信联系(非本文作者)