我试图通过安装 nodejs
curl -sL https://deb.nodesource.com/setup_4.x | sudo bash -
但遇到了一个问题“没有名为 lsb_release 的模块”。在网上查阅了一段时间后,我发现这是一个与 python 相关的文件,当安装了多个版本的 python 时会造成混乱。所以我(一个 linux 菜鸟)决定卸载 python 和 python2.7,然后稍后重新安装。当我尝试卸载 python 时,我遇到了这个问题:
The following packages have unmet dependencies:
lsb-release : Depends: python (>= 2.7) but it is not going to be installed
Depends: python (< 2.8) but it is not going to be installed
所以我尝试了,apt-get remove lsb-release
结果打印了同样的错误。我也无法重新安装 python2.7,有什么建议吗?