Hyperledger Fabric 智能合约实战 go语言开发

Posted thefist11

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hyperledger Fabric 智能合约实战 go语言开发相关的知识,希望对你有一定的参考价值。

step 1. 首先下载“go语言IDE编辑器” goland

step2. sh goland.sh 进行安装。

step3. 新建项目:选择New Projiect,localtion为你的项目路径+项目名。

  • SDK 选择 /usr/local/go 之前go的path

eg. 下面是之前安装go时添加的Gopath路径

export GOPATH=/usr/local/go
export PATH=$GOPATH/bin:$PATH
  1. 新建go文件并进行调试
package gopro

import "fmt"

func main(){
   fmt.Println("hello, world!")
}

在这里插入图片描述

以上是关于Hyperledger Fabric 智能合约实战 go语言开发的主要内容,如果未能解决你的问题,请参考以下文章

Hyperledger Fabric 智能合约实战 安装fabric

Hyperledger Fabric 智能合约实战 sdk node软件安装

Hyperledger Fabric 智能合约实战 访问链码接口

Hyperledger Fabric 智能合约实战 go语言开发

Hyperledger Fabric 智能合约实战 软件安装Docker Docker-composergo

Hyperledger Fabric教程--部署Fabric智能合约