当我执行:
./byfn.sh -m generate
选择了y,然后运行直接报如下错误:
cryptogen tool not found. exiting
我去搜了一下,解决方案是:You are missing: "Platform specific binaries", see here how to get them.
你需要在fabric-samples目录下面执行如下命令,将所需要的二进制文件下载下来:
curl -sSL https://goo.gl/eYdRbX | bash
执行完以后会在fabric-samples目录下面创建一个bin目录,下面放着所需要的所有的二进制工具。
这时候你在first-network下执行 ./byfn.sh -m generate
就会成功了!