安装环境:
系统:Centos7
网络:连接互联网
一、环境准备:
①变更国内yum源(方便安装包下载)
备份源文件
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
下载国内(阿里)源文件:
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
清理yum缓存,并生成新的缓存
yum clean all
yum makecache
二、安装nodejs
安装wget
yum install wget
y
y
下载安装包
cd /usr/local
wget https://registry.npmmirror.com/-/binary/node/v16.18.1/node-v16.18.1-linux-x64.tar.gz
解压
sudo tar -zxvf node-v16.18.1-linux-x64.tar.gz
重命名
sudo mv node-v16.18.1-linux-x64 node-v16.18.1