node-js.png

说明

按照官方(www.npmjs.com)的说法,npmNode.js一起存在,这意味着当您下载并安装Node.js时,您会自动在计算机上安装npm。所以这里我们只需要安装Node.js即可。其实之前发过这样的教程,只是没有写Centos系统,所以这里又拿出来说一次,包括Centos系统,目前最新的Node.js版本为10.x这里说下安装方法。

安装

Node.js官方GitHub地址:https://github.com/nodesource/distributions

Ubuntu系统

curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs

Debian系统

curl -sL https://deb.nodesource.com/setup_10.x | bash -
apt-get install -y nodejs

Centos系统

curl -sL https://rpm.nodesource.com/setup_10.x | bash -
yum install nodejs -y

检查Node.jsNPM版本

node -v
npm -v

相关推荐

  1. 甲骨文 Debian 扩容引导卷/无损调整系统分区
  2. CentOS 7 安装使用 iptables 防火墙方法介绍
  3. CentOS 7 firewalld 防火墙常用命令汇总
  4. 使用 SystemBack 为 Debian / Ubuntu 创建系统备份
  5. Debian 9 如何安装XFCE桌面+开启XRDP远程桌面服务
  6. Debian 9 系统小白手册(常见问题)
文章作者:喵斯基部落
原文地址:https://www.moewah.com/archives/1231.html
版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。非商业转载及引用请注明出处(作者、原文链接),商业转载请联系作者获得授权。