2017-06-03 5 views
2

Windows 10(64ビット)を使用していますが、すべての前提条件がインストールされているようです。ハイパージャーアーティファクトを抽出しようとするとエラーが発生する

しかし、Gitの-バッシュにコマンドcurl -sSL https://raw.githubusercontent.com/hyperledger/fabric/master/examples/e2e_cli/bootstrap.sh | bashを実行している間、私は次のエラーが発生します。

$ curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/master/examples/e2e_cli/bootstrap.sh | bash 
    % Total % Received % Xferd Average Speed Time Time  Time Current 
           Dload Upload Total Spent Left Speed 
100 1205 0 1205 0  0 976  0 --:--:-- 0:00:01 --:--:-- 988 

gzip: stdin: not in gzip format 
tar: Child returned status 1 
tar: Error is not recoverable: exiting now 
bash: line 12: cd: release/mingw32_nt-10.0-wow-i686: No such file or directory 
sh: download-dockerimages.sh: No such file or directory 

答えて

2

それはGitの2.13で、私のWindows 10上で動作しません。

もう一度やり直してください。ただし、PATHを簡略化してください。そして、 'bash' と入力

set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\ 
set GH=C:\path\to\Git\2.13 
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH% 

、およびbashのセッションでは、再びあなたのcurlコマンドを実行してください:CMD、タイプで

+0

これは非常にうまく機能しました。どうもありがとうございました! – kwenyao

関連する問題