美文网首页
阿里云服务器Ubuntu 安装Nodejs

阿里云服务器Ubuntu 安装Nodejs

作者: 时光xwd | 来源:发表于2018-10-16 16:20 被阅读0次
    [root@localhost ~]# cd / #进入根目录
    [root@localhost /]# mkdir soft && cd soft  #用来放置安装包
    [root@localhost soft]# wget https://nodejs.org/dist/v8.9.4/node-v8.9.4.tar.gz #下载nodejs压缩包
    [root@localhost soft]# tar -zxvf node-v8.9.4.tar.gz  #解压缩
    [root@localhost soft]# cd node-v8.9.4.tar && ./configure #进行配置,使用默认配置
    [root@localhost node-v8.9.4]# make && make install #进行编译
    

    相关文章

      网友评论

          本文标题:阿里云服务器Ubuntu 安装Nodejs

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