Ubuntu16.04安装软件时,出现“E: Unable to correct problems, you have held broken packages”问题的解决办法

问题原因:Ubuntu安装软件时经常会因为软件包之间的依赖关系无法完成安装。
解决方案:
sudo apt install aptitude:完成aptitude命令安装
sudo aptitude install 软件包 :自动安装某个软件包

遇见这个选项,选n

 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/?] ?

完成安装。
注:aptitude这个命令可以自动处理安装包之间的依赖关系

参考链接:
https://blog.csdn.net/weixin_43880667/article/details/86515908

你可能感兴趣的:(ubuntu)