编程语言
首页 > 编程语言> > deepin 安装 nodejs npm

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

标签:npm,sudo,get,nodejs,deepin,apt,install
来源: https://www.cnblogs.com/hefeng2014/p/16158490.html