centOS无法通过yum安装nodejs

centOS can't install nodejs via yum

我在我的 centOS 服务器上使用节点 v0.10.x,我想更新 node.js,所以关注了一些文章。首先删除当前安装的:

# which node
# cd /usr
# rm -r bin/node bin/node-waf include/node lib/node lib/pkgconfig/nodejs.pc share/man/man1/node.1

然后检查 node -v 是否正常工作,很好。但是使用 yum 不会安装最新的 Node.js,所以我搜索了一些 post 并发现了这个: https://www.metachris.com/2015/10/how-to-install-nodejs-5-on-centos-and-ubuntu/

所以我遵循了命令:

# rpm -Uvh https://rpm.nodesource.com/pub_5.x/el/7/x86_64/nodesource-release-el7-1.noarch.rpm
# yum install nodejs -y

这就是问题所在。它打印出许多错误并不断失败。

Resolving Dependencies
--> Running transaction check
---> Package nodejs.x86_64 0:0.10.42-4.el6 will be updated
--> Processing Dependency: nodejs(x86-64) = 0.10.42-4.el6 for package:     nodejs-devel-0.10.42-4.el6.x86_64
---> Package nodejs.x86_64 0:5.11.1-1nodesource.el7.centos will be an update
--> Running transaction check
---> Package nodejs-devel.x86_64 0:0.10.42-4.el6 will be updated
---> Package nodejs-devel.x86_64 0:5.11.1-1nodesource.el7.centos will be an update
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package         Arch      Version                          Repository     Size
================================================================================
Updating:
 nodejs          x86_64    5.11.1-1nodesource.el7.centos    nodesource    8.7 M
Updating for dependencies:
 nodejs-devel    x86_64    5.11.1-1nodesource.el7.centos    nodesource    7.6 M

Transaction Summary
================================================================================
Upgrade  1 Package (+1 Dependent package)

Total size: 16 M
Is this ok [y/d/N]: y
Downloading packages:
Running transaction check
Running transaction test


Transaction check error:
  file /usr/lib/node_modules/npm/node_modules/semver/package.json from install of nodejs-5.11.1-1nodesource.el7.centos.x86_64 conflicts with file from package nodejs-semver-2.1.0-1.el6.noarch
  file /usr/lib/node_modules/npm/node_modules/semver/bin/semver from     install of nodejs-5.11.1-1nodesource.el7.centos.x86_64 conflicts with file from package nodejs-semver-2.1.0-1.el6.noarch
  file /usr/lib/node_modules/npm/node_modules/semver/semver.js from install of nodejs-5.11.1-1nodesource.el7.centos.x86_64 conflicts with file from package nodejs-semver-2.1.0-1.el6.noarch
  ... and keeps going on ...

同样在删除节点之前,我也这样做了:

# npm cache clean -f
# npm install -g n
# n stable

但这根本不起作用,因为总是说版本 0。10.x,甚至下载了最新版本! (我看到了 6.2.2 什么的)

我认为我的服务器出了点问题,我不知道如何解决。任何人都可以给我一些建议吗?另外如果可以的话,我想安装最新的 Node.js.

从 EPEL 存储库安装节点

yum update
yum install epel-release
yum install nodejs
node --version

访问 npm 来管理他们的 Node 包。

yum install npm

首先,你必须安装epe-release

sudo yum install epel-release

之后,可以安装node.js和npm

sudo yum -y install nodejs npm

它对我有用。

最简单的方法是使用 nvm,即“节点版本管理器”。

在 shell 中,执​​行:

$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash

注意如果您想了解 运行 之前的脚本,请阅读 nvm github page [=33= 上的文档] 从 curl 命令中删除 | bash 以在没有 运行 的情况下读取 .sh 文件

关闭并 re-open shell 使用更新的配置文件。那么:

//prints "nvm" if correctly installed
$ command -v nvm

// install latest version of node
$ nvm install node

//check it's installed correctly
$ node -v
v12.6.0

在用其他方法失败后,这个没有问题。