使用 yum 在 centos 7 上安装最新的 nodejs(4.2.1 或 5.0)

使用 yum 在 centos 7 上安装最新的 nodejs(4.2.1 或 5.0)

有没有办法使用 yum 在 CentOS 7 上安装最新的 nodejs(版本 4.2.1 或 5.0)?当然我可以通过其他方式安装,例如从源代码安装,但我想保持它的可维护性... EPEL 版本中目前可用的是 0.10.36,请参阅https://dl.fedoraproject.org/pub/epel/7/x86_64/repoview/nodejs.html

答案1

Nodesource 为 nodejs 4x 和 5x 提供了存储库。

例如,要安装 4x 分支的 repo,请以 root 身份运行:

    # curl -sL https://rpm.nodesource.com/setup_4.x | bash -

然后就可以通过 yum 安装 nodejs 了:

    # yum install nodejs

来源:https://github.com/nodesource/distributions

相关内容