美文网首页程序员
Ubuntu上nodejs 安装

Ubuntu上nodejs 安装

作者: hojun | 来源:发表于2016-08-02 09:29 被阅读132次

    Ubuntu上nodejs 安装

    文档地址:https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions

    Debian and Ubuntu based Linux distributions

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

    执行的时候可能会报如下错误


    Err http://ppa.launchpad.net trusty/main amd64 Packages

    404  Not Found

    W: Failed to fetch http://ppa.launchpad.net/finalterm/daily/ubuntu/dists/trusty/main/binary-i386/Packages  404  Not Found

    E: Some index files failed to download. They have been ignored, or old ones used instead.


    首先,找出那些引起“404 无法找到”错误的PPA。

    sudo apt-get update | grep "Failed"

    sudo add-apt-repository --remove ppa:finalterm/daily

    你得去重复重复再重复,把上面找到的所有过时的PPA仓库一个一个地移除。

    或则用下面这种方法


    添加一个PPA源

    sudo add-apt-repository ppa:user/ppa-name

    删除一个PPA源

    到源的目 录:cd  /etc/apt/sources.list.d/

    可以看到关于源的文件,删除即可 : sudo rm filename


    安装nodejs

    sudo apt-get install -y nodejs

    sudo apt-get install -y build-essential

    安装成功的时候输入 node -v 、nodejs -v 、npm -v 都能看到对应的版本号

    Inspiron-3543:~$ node -v

    v4.4.7

    Inspiron-3543:~$ nodejs -v

    v4.4.7

    Inspiron-3543:~$ npm -v

    2.15.8

    卸载node.js

    sudo apt-get autoremove node

    相关文章

      网友评论

        本文标题:Ubuntu上nodejs 安装

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