在Ubuntu 19.04/18.04/16.04和Debian 10/9/8| 12 LTS上安装Node.js 10
时间:2020-02-23 14:33:05 来源:igfitidea点击:
欢迎我们关于如何在Ubuntu 18.04/16.04/Debian 10/9| 12 LTS上安装Node.js 10 的教程。
节点10从节点开始变为LTS版本 v10.13.0
。
在Ubuntu 19.04/18.04/16.04和Debian 9上安装Node.js 12 |10 LTS
Node.js是Chrome V8 JavaScript引擎构建JavaScript运行时。
在Ubuntu 19.04/18.04/16.04和Debian 9上安装Node.js 12.x和10.x LTS。
添加Nodesource二进制分发存储库。
node.js 12:
sudo apt update sudo apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash
node.js 10:
sudo apt update sudo apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates curl -sL https://deb.nodesource.com/setup_10.x | sudo bash
此命令将为操作系统配置Node.js APT存储库。
在Ubuntu&Debian上安装Node.js 10 | 12 LTS
添加存储库后,使用ubuntu 18.04/16.04/debian 10/9上安装node.js 12 | 10 lts apt
包管理器。
sudo apt update sudo apt -y install gcc g++ make sudo apt -y install nodejs
要安装yarn包管理器,请运行:
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add echo "deb https://dl.yarnpkg.com/debian/stable main" | sudo tee /etc/apt/sources.list.d/yarn.list sudo apt-get update && sudo apt-get install yarn
确认节点版本
$node -v v10.15.3 $node -v v12.13.0