美文网首页编程之路我爱编程
Ubuntu 下安装Node.JS的最佳方式

Ubuntu 下安装Node.JS的最佳方式

作者: e7fcd5765c15 | 来源:发表于2017-03-18 11:48 被阅读82次

    从Github远程库安装Node.JS

    (这是我经过反复实践后,得出的最简洁最实用的方法,里面有一些坑的处理方法,大家可以参考。)

    在这个方法中我们需要一些步骤来把Node.JS从Github的远程的仓库克隆到本地仓库目录

    在开始克隆(clone)包到本地并且配制之前,我们要先安装以下依赖包

    root@ubuntu:sudo apt-get install g++ curl make libssl-dev    apache2-utils git-core

    现在我们开始用git命令克隆到本地并且转到配制目录

    root@ubuntu:sudo git clone git://github.com/nodejs/node.git

    root@ubuntu:sudo cd node/

    Git Clone NodeJS

    clone仓库之后,通过运行.config命令来编译生成完整的安装包。

    root@ubuntu:sudo ./configure

    (注:有时执行./configure命令出错:/usr/bin/env:’python’:No such file or directory对此是提示系统没有Python,Google V8是用Python编写的,所以必须先sudo apt-get install python)

    运行make install命令之后耐心等待几分钟,程序将会安装好Node.JS。

    root@ubuntu:~/node# make install

    root@ubuntu:~/node# node -v

    显示相应版本

    相关文章

      网友评论

        本文标题:Ubuntu 下安装Node.JS的最佳方式

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