metabaseコンパイルエラー


metabaseエンジニアリングディレクトリで次のコマンドを実行します.

1、インストールパッケージのコンパイル

./bin/build

エラーは次のとおりです.
$ ./bin/build
Tagging uberjar with version 'v0.26.0-snapshot 36f38e1 master 2017-09-06'...
Running 'yarn' to download javascript dependencies...
yarn install v1.0.1
$ echo $npm_execpath | grep -q yarn || echo '\033[0;33mSorry, npm is not supported. Please use Yarn (https://yarnpkg.com/).\033[0m'
error Couldn't find the binary echo $npm_execpath | grep -q yarn || echo '\033[0;33mSorry, npm is not supported. Please use Yarn (https://yarnpkg.com/).\033[0m'
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.

metabaseはlinuxでコンパイルでき、nodejsバージョンが8.4.0であることを要求し、windows上のnodejsもこのバージョンに変更した後、コンパイルも通過した.
インストールnodejs最新版8.4.0はcmdで実行し、Chocolateyをインストールします.次のコマンドはpowershellに使用します.パソコンにないものはインストールする必要があります.
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

再実行、nodejsのインストール
 cinst nodejs