Yum

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

  • November 19, 2015

有沒有辦法使用 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

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

引用自:https://serverfault.com/questions/733606