美文网首页
ubuntu 16.04 安装 node 6.x

ubuntu 16.04 安装 node 6.x

作者: Leoshi | 来源:发表于2017-02-28 23:07 被阅读272次

    需要使用coding 提供的WebIDE,需要node 6.x的依赖,但在[官网提供的安装方法](https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions)并没有成功,大家可以一试:

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

    我这里表示解析失败或者不支持当前版本的Ubuntu

    然后找到了这个解决方案

    cd ~
    curl -sL https://deb.nodesource.com/setup_6.x -o nodesource_setup.sh
    chmod +x nodesource_setup.sh
    sudo ./nodesource_setup.sh
    sudo apt-get install nodejs
    

    相关文章

      网友评论

          本文标题:ubuntu 16.04 安装 node 6.x

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