drbfxb977777 2018-10-12 00:26
浏览 85
已采纳

去相当于RubyGems吗?

I come from a ruby background, and I just started learning go. Is there any standard way to install 3rd-party libraries that's comparable to RubyGems?

  • 写回答

1条回答 默认 最新

  • dsovc00684 2018-10-12 03:57
    关注

    Go does have package management tool as well (similar like RubyGems for Ruby), it's called dep.

    Usage example:

    cd $GOPATH/src
    mkdir testproject
    cd testproject
    
    # init project
    dep init
    
    # install 3rd party library
    dep ensure -add github.com/labstack/echo
    dep ensure -add github.com/novalagung/gubrak
    

    dep generates Gopkg.toml file (similar like Gemfile for ruby). You can either install the 3rd party libraries through dep ensure -add command, or by adding the library metadata into Gopkg.toml then perform dep ensure.

    Btw, there is also few other alternatives other than dep. For more information please take a look at https://github.com/golang/go/wiki/PackageManagementTools.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。
  • ¥20 CST怎么把天线放在座椅环境中并仿真
  • ¥15 任务A:大数据平台搭建(容器环境)怎么做呢?