码迷,mamicode.com
首页 > 其他好文 > 详细

centos7安装指定版本node

时间:2020-07-11 10:05:21      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:yum   master   led   eve   native   follow   read   ack   nodejs   

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

标签:yum   master   led   eve   native   follow   read   ack   nodejs   

原文地址:https://blog.51cto.com/11114389/2510010

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!