我正在我的电脑上使用Ubuntu的“实时”版本,20.04LTS。我想安装DDrescue。我运行这些终端命令是为了:
sudo add-apt-repository universe
sudo apt update
sudo apt install gddrescue
我把这个拿回来:
The following packages have unmet dependencies:
ddrescue-gui : Depends: python-wxtools but it is not going to be installed
Depends: python2.7 but it is not going to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
我现在该干啥?我试过"sudo install python-wxtools
“和"sudo install python2.7
”,但两者都不起作用。
我对linux有0的经验,这让我非常沮丧。
发布于 2021-03-18 23:17:31
请注意ddrescue-gui
包不在官方存储库中显示。。
要安装这个软件包,您应该将计算机连接到internet上,然后添加第三方存储库,在本例中是个人包存档(PPA) 从发射台。然后,完全可重复的方法如下:
sudo add-apt-repository ppa:hamishmb/myppa
sudo apt-get update
sudo apt-get install gddrescue ddrescue-gui
要启动应用程序,直接在名为DDRescue或python3 /usr/share/ddrescue-gui/DDRescue_GUI.py
命令的菜单中使用它的启动程序。
https://askubuntu.com/questions/1324565
复制