1

システムに NVM をインストールし、次のコマンドで新しいバージョンの nodejs をインストールしようとしました。

nvm install v0.8.23

nvm install 0.8.23

しかし、次のエラーが表示されます。

/usr/bin/which: no shasum in ($PATH)
######################################################################## 100.0%
Checksums do not match.
Binary download failed, trying source.
Additional options while compiling: 
nvm: install N/A failed!

そして何も起こりません。どうすればこの問題を解決できますか?!

更新-1_ _ _ _ _ _ _ _ __ _ _ __ _ _ __ _ _ _ _ __ _ ____ _ _ _ _

アクセス許可を変更してエイリアスを作成しようとしましたが、何の効果もありませんでした。シンボリックリンク shasum -> sha1sum を作成し、出力が変更されました (ただし、まだありません):

######################################################################## 100.0%
Checksums do not match.
Binary download failed, trying source.
Additional options while compiling: 
nvm: install N/A failed!
4

1 に答える 1

1

Mac OS X を使用している場合は、これを試すことができます。

sudo chmod 555 /usr/bin/shasum
nvm install ...

それでも問題が解決しない場合は、インストールする必要がありますshasum(おそらくMacPortsを使用して)。

Linux を使用している場合は、ディストリビューションのパッケージ マネージャーを使用してインストールします。

于 2013-05-01T06:10:02.857 に答える