1月 16, 2014
Nodeが最新バージョンにアップ出来ない
原因:HomeBrewでNodeをインストールしたから、通常のインストーラーではアップ出来ないみたい。
以下のように解決した。
brew install node
It appears you have MacPorts or Fink installed.
MacPortsとFink(?)が入ってるからダメ?
sudo port -f uninstall installed sudo rm -rf /opt/local/
これで再度Nodeをインストールしてみる。
Warning: Your Xcode (4.6.3) is outdated
Please update to Xcode 5.0.1.
Xcodeが最新でないとだめかい?
ならばアップデート。そして今度は?
Warning: You have not agreed to the Xcode license.
イライラしてきた。適当にXcodeのプロジェクトを開いて同意書に「同意」をクリック。
今度こそ!
node: Beginning with 0.8.0, this recipe now comes with npm.
It appears you already have npm installed at /usr/local/lib/node_modules/npm.
To use the npm that comes with this recipe, first uninstall npm with
`npm uninstall npm -g`, then run this command again.
npmと競合している…。苛立ちが頂点へ。
brew install node --without-npm
==> Downloading http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gz
やっとできた!
しばし3分待ってダウンロード&インストールが終了。
Nodeバージョン確認してみると
node -v
v0.10.24
疲れた。