在安装与python3连接的任何软件包时,我总是遇到以下一些错误。但是它在python2包中运行得很好。以下是错误:以下包有未满足的依赖关系:
cav-linux : Depends: libssl0.9.8 (>= 0.9.8m-1) but it is not installable
python3-tk : Depends: blt (>= 2.4z-9) but it is not going to be installed
Depends: tk8.6-blt2.5 (>= 2.5.3) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution)。
发布于 2017-12-28 07:30:47
可以使用以下命令解决此问题:
sudo apt-get -f install此命令将删除上述所有错误。
https://askubuntu.com/questions/989910
复制相似问题