3

因为要安装新的清晰版Hyperledger Fabric,我删除了一个月前的旧Hyperledger文件,运行“vagrant destroy”。

我成功运行“vagrant up”和“vagrant ssh”。

当我运行“peer”时,如果失败,我“make peer”成功。当我再次运行“make peer”和“peer”时,弹出错误如下:

vagrant@ubuntu-1404:/opt/gopath/src/github.com/hyperledger/fabric$ make peer
make: Nothing to be done for `peer'.
vagrant@ubuntu-1404:/opt/gopath/src/github.com/hyperledger/fabric$ peer
No command 'peer' found, did you mean:
 Command 'pee' from package 'moreutils' (universe)
 Command 'beer' from package 'gerstensaft' (universe)
 Command 'peel' from package 'ears' (universe)
 Command 'pear' from package 'php-pear' (main)
peer: command not found
vagrant@ubuntu-1404:/opt/gopath/src/github.com/hyperledger/fabric$
vagrant@ubuntu-1404:/opt/gopath/src/github.com/hyperledger/fabric$ cd peer
vagrant@ubuntu-1404:/opt/gopath/src/github.com/hyperledger/fabric/peer$ ls -l
total 60
drwxr-xr-x 1 vagrant vagrant   204 Jun 26 01:16 bin
-rw-r--r-- 1 vagrant vagrant 17342 Jun 25 14:18 core.yaml
-rw-r--r-- 1 vagrant vagrant 35971 Jun 25 14:18 main.go
-rw-r--r-- 1 vagrant vagrant  1137 Jun 23 08:46 main_test.go
4

2 回答 2

2

二进制peer文件的位置是 ./build/bin/ 文件夹。对于您的配置,完整路径是“/opt/gopath/src/github.com/hyperledger/fabric/build/bin/”

于 2016-06-26T09:17:06.373 回答
0

让我告诉你我上周从 gitHub 提取代码时观察到的一件事,[确切地说是星期四]。Make 命令在“/opt/gopath/src/github.com/hyperledger/fabric/build/bin/”中创建了可执行文件。但我发现的一件漂亮的事情是,它已将相同的内容复制到“/hyperledger/build/bin”。$PATH 变量现在也包含“/hyperledger/build/bin”。

因此,要回答您的问题,您有两个选择:-
1.一个保留您当前版本的代码并导航到结构目录中的 bin 文件夹,看看那里是否存在对等可执行文件。? 如果是,则执行其余代码。
2.像往常一样从 gitHub.com 拉取最新副本并从 fabric 目录中创建 peer。但是从任何地方执行对等。:)

于 2016-06-27T11:56:28.743 回答