20

我看到你可以download nodejs通过homepageorinstall via homebrewvia 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. 
4

3 回答 3

30

我更喜欢使用brew.

一旦安装,它就像:

brew install node

做完了。

不再想要了?

brew uninstall node

需要升级吗?

brew upgrade node

另外,它的基础git和社区非常活跃。此外,安装的包总是在一个地方,然后符号链接到你的/usr/local/bin,所以没有混乱sudo或多个安装位置。

在这里查看网站

于 2013-11-07T04:10:58.230 回答
4

使用Mac OS X 安装程序,因为将来升级更容易。

于 2013-11-07T04:01:43.113 回答
4

我个人喜欢从源代码编译。 https://github.com/joyent/node/wiki/Installation

您可以使用 NVM 进行升级和降级,甚至可以随时在不同版本之间切换! https://github.com/creationix/nvm

于 2013-11-07T04:50:19.400 回答