E: Unable to locate package npm

后端 未结 10 2424
耶瑟儿~
耶瑟儿~ 2020-12-07 18:08

When I try to install npm with sudo apt-get install npm, I got following error:

E: Unable to locate package npm

Why

10条回答
  •  死守一世寂寞
    2020-12-07 18:54

    This will resolve your error. Run these commands in your terminal. These commands will add the older versions. You can update them later or you can change version here too before running these commands one by one.

    sudo apt-get install build-essential
    wget http://nodejs.org/dist/v0.8.16/node-v0.8.16.tar.gz
    tar -xzf node-v0.8.16.tar.gz
    cd node-v0.8.16/
    ./configure
    make
    sudo make install
    

提交回复
热议问题