美文网首页
Ubuntu 源码安装Node.js

Ubuntu 源码安装Node.js

作者: MuTren | 来源:发表于2020-11-20 11:01 被阅读0次
    1. 在 Github 上获取 Node.js 源码:
    
    $ sudo git clone https://github.com/nodejs/node.git
    
    
    1. 修改目录权限:
    
    $ sudo chmod -R 755 node
    
    
    1. 使用 ./configure 创建编译文件,并按照:
    
    $ cd node
    
    $ sudo ./configure
    
    $ sudo make
    
    $ sudo make install
    
    
    1. 查看 node 版本:
    
    $ node --version
    
    

    相关文章

      网友评论

          本文标题:Ubuntu 源码安装Node.js

          本文链接:https://www.haomeiwen.com/subject/geldiktx.html