使用yum或者apt-get等安装最新版nodejs和npm
前言: 我们平常常用的安装软件有三种方式, yum(apt-get等)命令, rpm(deb等)包, 源码编译, 而最便捷的便是yum式的命令式安装, 下面, 我们就以最便捷的方式来安装它
centos
1. 获取最新版的 bash
curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
其他版本, 如:
curl --silent --location https://rpm.nodesource.com/setup_7.x | bash -
2. 执行安装
sudo yum install -y nodejs
3. 查看版本
node --version npm --version
ubuntu
1. 获取最新版的 bash
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
其他版本, 如:
curl --silent --location https://rpm.nodesource.com/setup_7.x | bash -
2. 执行安装
sudo apt-get install -y nodejs
3. 查看版本
node --version npm --version
更多版本
请到网站去找
https://rpm.nodesource.com
note: 记得用 root
权限
相关推荐
liyansring 2020-08-15
liym 2020-07-20
dongfangxiaozi 2020-07-19
katanaFlower 2020-07-05
JM 2020-06-21
咻咻ing 2020-06-16
zhangpan 2020-06-11
greent00 2020-06-10
csdmeb 2020-06-08
VFCSDN 2020-06-07
IsanaYashiro 2020-06-06
GluttonousZX 2020-06-06
yss0 2020-06-02
lilygg 2020-05-29
zwt00 2020-05-29
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
flyDeDog 2020-05-28
kuzilala 2020-05-28