centos7安装指定版本node
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7安装指定版本node相关的知识,希望对你有一定的参考价值。
centos7安装配置nodejs
参考链接 https://linuxize.com/post/how-to-install-node-js-on-centos-7/
## 配置需要的大版本 setup_12.x
curl -sL https://rpm.nodesource.com/setup_12.x | sudo bash -
仔细阅读输出信息
[root@master222 wkgithub_eleui]# curl -sL https://rpm.nodesource.com/setup_12.x | sudo bash -
## Installing the NodeSource Node.js 12.x repo...
## Inspecting system...
+ rpm -q --whatprovides redhat-release || rpm -q --whatprovides centos-release || rpm -q --whatprovides cloudlinux-release || rpm -q --whatprovides sl-release
+ uname -m
## Confirming "el7-x86_64" is supported...
+ curl -sLf -o /dev/null ‘https://rpm.nodesource.com/pub_12.x/el/7/x86_64/nodesource-release-el7-1.noarch.rpm‘
## Downloading release setup RPM...
+ mktemp
+ curl -sL -o ‘/tmp/tmp.pm7SDJEHAg‘ ‘https://rpm.nodesource.com/pub_12.x/el/7/x86_64/nodesource-release-el7-1.noarch.rpm‘
## Installing release setup RPM...
+ rpm -i --nosignature --force ‘/tmp/tmp.pm7SDJEHAg‘
## Cleaning up...
+ rm -f ‘/tmp/tmp.pm7SDJEHAg‘
## Checking for existing installations...
+ rpm -qa ‘node|npm‘ | grep -v nodesource
## Your system appears to already have Node.js installed from an alternative source.
Run `sudo yum remove -y nodejs npm` to remove these first.
## Run `sudo yum install -y nodejs` to install Node.js 12.x and npm.
## You may also need development tools to build native addons:
sudo yum install gcc-c++ make
## To install the Yarn package manager, run:
curl -sL https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
sudo yum install yarn
正式安装nodejs
sudo yum install nodejs
## 查看版本
node --version
安装yarn
## To install the Yarn package manager, run:
curl -sL https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
sudo yum install yarn
以上是关于centos7安装指定版本node的主要内容,如果未能解决你的问题,请参考以下文章