莱因电博

Li-e.cn

Li Internet Electronic Blog
@rss

Ubuntu 18.04 安装 node.js 16.x 以上版本教程

Install node.js 16.x on Ubuntu 18.04

————————————————————

  1. 安装 curl 资源管理器:

    sudo apt install curl
    
  2. 启用 node.js 源存储库:

    curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
    

    该命令会将 NodeSource 签名密钥添加到您的系统,创建一个 apt 源存储库文件,安装所有必要的软件包并刷新 apt 缓存。

    PS: 如果您需要安装其他版本(如12.x旧版本),只需将 setup_16.x 更改为 setup_12.x

  3. 启用节点源存储库后,通过键入以下内容来安装 node.jsnpm

    sudo apt install nodejs
    
  4. 通过打印 node.jsnpm 的版本来验证它们是否已成功安装:

    hamson@ubt18:~$ node -v
    v16.18.0
    hamson@ubt18:~$ npm -v
    8.19.2
    hamson@ubt18:~$ 
    
(C) 2019 - 2024 Li-e.cn莱因电博(立网电子博客) | Powered by Vercel , based on Hugo with Gists theme.