码迷,mamicode.com
首页 > 系统相关 > 详细

Linux下golang+bee环境安装

时间:2018-03-20 10:40:03      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:golang   beego   linux   bee   

下载各个程序安装包

  1. golang安装包地址:https://www.golangtc.com/download

  2. beego安装包地址:https://github.com/astaxie/beego

  3. bee工具安装包地址:https://github.com/beego/bee


装golang开发环境

     tar xf go1.9.2.linux-amd64.tar.gz

     mv go /usr/local/

     在/etc/profile中最后添加如下三行:

     export PATH=$PATH:/usr/local/go/bin
     export GOPATH=$HOME/workspace
     export PATH=$PATH:$GOPATH/bin

     source /etc/profile #是环境变量生效


安装beego环境

官方推荐通过命令 go get github.com/astaxie/beego来完成自动安装,但是我在本地虚拟机上执行时报错,报错如下图:

技术分享图片

     查询了很久,还是没能解决,没办法只能手动安装:

      首先先下载源码包并解压

      unzip beego-master.zip   #解压

      mv beego-master workspace/src/github.com/astaxie/beego #移动到工作目录中

      go install github.com/astaxie/beego #安装


安装bee工具

    官方推荐使用命令 go get github.com/beego/bee来快速安装(本作者没法,还是报上面的错误,只能手动执行了,还是老样,三步骤!!!!)

    unzip bee-master.zip

    mv bee-master workspace/src/github.com/beego/bee 

    go install github.com/beego/bee


测试

    bee new p1

    bee run p1

    技术分享图片

    现在可以通过浏览器访问一下啦

   



Linux下golang+bee环境安装

标签:golang   beego   linux   bee   

原文地址:http://blog.51cto.com/vaedit/2088847

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!