Centos7安裝nodejs8的正確姿勢

2021-09-16 18:56:33 字數 1109 閱讀 9309

root許可權下執行該命令:

curl --silent --location | sudo bash -

會提示你以下內容:

irming "el7-x86_64" is supported...

+ curl -slf -o /dev/null ''

## downloading release setup rpm...

+ mktemp

+ curl -sl -o '/tmp/tmp.pqyuu3meay' ''

## installing release setup rpm...

+ rpm -i --nosignature --force '/tmp/tmp.pqyuu3meay'

## cleaning up...

+ rm -f '/tmp/tmp.pqyuu3meay'

## checking for existing installations...

+ rpm -qa 'node|npm' | grep -v nodesource

## run `sudo yum install -y nodejs` to install node.js 8.x lts carbon 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 | sudo tee /etc/yum.repos.d/yarn.repo

sudo yum install yarn

按照提示內容進行步驟安裝就可以了。

找過很多資料都不靠譜,編譯安裝和gcc公升級的時候會有一堆問題。

centos7安裝nodejs環境

然後三部走 configure prefix make make install 安裝成功後,到相應的安裝後的目錄下檢視版本號 node version root jordy bin node version v8.11.1 上面是簡單說了下用原始碼編譯安裝,下面我們直接用二進位制的原始碼來安裝 l...

CentOS7 中編譯安裝 Nodejs

一 安裝必要的編譯軟體包 yum install gcc gcc c ywget三 解壓 nodejs 安裝包,進入解壓的 node 資料夾,開始編譯 tar xvf node v10.13.0.tar.gz cd node v10.13.0 configure make make過程較為耗時,可能...

centos7 安裝nodejs和yarn最新版本

這裡,我採用的是官網下原始碼包的方式進行安裝。安裝目錄大家隨意,我這裡放在 usr 下 在usr建立乙個目錄nodejs,如下 使用命令列vim etc profile,在 etc profile 末尾加入如下內 export node home usr nodejs node v15.11.0 l...