deepin 安装 nodejs npm

Ubuntu apt 安装 nodejs

#先安装Python的软件仓库支持
sudo apt-get install -y python-software-properties software-properties-common
#增加nodejs 的仓库配置
sudo add-apt-repository ppa:chris-lea/node.js
#更新APT 仓库缓存
sudo apt-get update

安装Nodejs

sudo apt-get install nodejs
nodejs -v

安装NPM

apt-get install nodejs-legacy
apt-get install npm
# 安装n模块
npm install -g n
# 升级nodejs到最新stable版本
n stable
# 升级最新npm
npm install npm@latest -g
posted @ 2022-04-18 10:22  Lafite-1820  阅读(260)  评论(0编辑  收藏  举报