记一次Ubuntu安装npm报错解决方案(node-gyp (>= 0.10.9) but it is not going to be installed)

报错提示

 node-gyp : 依赖: nodejs-dev 但是它将不会被安装
            依赖: gyp (>= 0.1+20150913git1f374df9) 但是它将不会被安装
            推荐: build-essential 但是它将不会被安装
E: 无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关系

使用下面命令安装

sudo apt install aptitude
sudo aptitude install npm

遇到如下

     Keep the following packages at their current version:
1)     libssl-dev [Not Installed]                         
2)     node-gyp [Not Installed]                           
3)     nodejs-dev [Not Installed]                         
4)     npm [Not Installed]     

Accept this solution? [Y/n/q/?] ?

先N再Y

你可能感兴趣的:(Node.js)