你的位置:首页 > 互联网IT
CentOS 7通过yum安装nodejs和npm失败方法,No package nodejs available.
系统:CentOS 7 只支持64-bit
第一步:
获取nodejs 资源
# 4.x
curl --silent --location https://rpm.nodesource.com/setup_4.x | bash -
# 5.x
curl --silent --location https://rpm.nodesource.com/setup_5.x | bash -
# 0.10
curl --silent --location https://rpm.nodesource.com/setup | bash -
我这里安装的是 v4.x
第二步:
安装
yum install -y nodejs
查看:
测试是否安装成功
node -v
# v4.4.0
npm -v
# 2.14.20
发表评论: