我看到您可以download nodejs
或homepage
或install via homebrew
via macports
。
哪种方法最好?
是否有理由选择其中一个?
Some things I consider:
1. Ease of upgrading to latest version
2. Ability to (fully) remove and uninstall
3. 1 and 2 should leave no trace of old version (including any temp files), or in case of uninstalling, should fully remove everything.
答案 0 :(得分:27)
我更喜欢使用brew
。
安装后就像以下一样简单:
brew install node
完成并完成。
不再需要它了吗?
brew uninstall node
需要升级吗?
brew upgrade node
另外,它基于git
,社区非常活跃。
此外,安装的软件包始终位于一个位置,然后符号链接到/usr/local/bin
,因此不会出现凌乱的sudo
或多个安装位置。
答案 1 :(得分:4)
使用Mac OS X Installer,因为将来更容易升级。
答案 2 :(得分:4)
我个人喜欢从源代码编译。 https://github.com/joyent/node/wiki/Installation
您可以随时使用NVM进行升级和降级,甚至可以在不同版本之间切换! https://github.com/creationix/nvm