本文介绍了步骤安装用于超级账本结构节点设置的cryptogen工具?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是一名Java开发人员,已经开始学习hyperledger fabric.我正在尝试进行结构节点设置的设置.我不确定如何安装cryptogen工具.

I am a java developer and i have started learning hyperledger fabric . I am trying to do the setup for fabric node setup . I am not sure how to install cryptogen tool .

请帮助我.

推荐答案

对于Linux用户:下载平台-特定的二进制文件部分.

您需要运行:

curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/release/scripts/bootstrap-1.0.0.sh | bash

它将下载所需的文件.确保还安装并配置了所有先决条件.

It will download required files. Make sure you have all prerequisite installed and configured as well.

对于MacOSX用户:您还可以使用Homebrew安装Hyperledger Fabric二进制文件:

For MacOSX users:you can also use Homebrew to install the Hyperledger Fabric binaries:

brew tap hyperledger/fabric
brew install fabric-tools

如果您使用的是源代码库,则可以简单地使用

In case you are working with source code base you can simply compile it with

make cryptogen

它将在./build/bin/cryptogen文件夹中可用

这篇关于步骤安装用于超级账本结构节点设置的cryptogen工具?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-26 14:57