22
$: which node
$: node
-bash: node: command not found
$: brew install node
Error: node-0.6.18 already installed
$: brew doctor
Error: You have unlinked kegs in your Cellar
Leaving kegs unlinked can lead to build-trouble and cause brews that depend on
those kegs to fail to run properly once built.

node

$: brew link node
Error: No such file or directory - /usr/local/Cellar/node/0.6.5
$: brew uninstall node
Error: No such file or directory - /usr/local/Cellar/node/0.6.5
$: brew install node
Error: node-0.6.18 already installed

ノードを軌道に戻すにはどうすればよいですか??

4

7 に答える 7

53

次を実行して、正しいバージョンのノードを再リンクできました。

brew cleanup
brew link node
brew uninstall node
brew install node
于 2012-06-03T20:53:13.490 に答える
4

私は得ていました:

$ brew link node
Error: No such keg: /usr/local/Cellar/node
$ brew link node@8
Warning: node@8 is keg-only and must be linked with --force

そのコマンドは、すべてを再び機能させるのに役立ちました:

brew link --overwrite --force node@8
于 2018-05-23T08:52:10.620 に答える