当我试图从deb文件安装Cisco数据包跟踪程序时,它给出了以下错误:
Unpacking packettracer (7.3.0) ...
dpkg: dependency problems prevent configuration of packettracer:
packettracer depends on libdouble-conversion1; however:
Package libdouble-conversion1 is not installed.
packettracer depends on qt-at-spi; however:
Package qt-at-spi is not installed.
dpkg: error processing package packettracer (--install):
dependency problems - leaving unconfigured
Processing triggers for gnome-menus (3.32.0-1ubuntu1) ...
Processing triggers for desktop-file-utils (0.24-1ubuntu1) ...
Processing triggers for mime-support (3.63ubuntu1) ...
Processing triggers for shared-mime-info (1.10-1) ...
Errors were encountered while processing:
packettracer然后,我尝试使用命令libdouble-conversion1安装sudo apt-get install libdouble-conversion1。它给出了以下错误
Package libdouble-conversion1 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libdouble-conversion1' has no installation candidate发布于 2020-02-01 17:46:57
chmod +x packagename)/home/username/.config/mimeapps.list复制到/root/.config/sudo dpkg -i packagename)sudo apt purge packagename)。会有一些warning.Just类型的这个命令(sudo apt --fix-broken install)。然后,再移除。现在,您可以再次安装libjpeg-涡轮8软件包。祝好运
发布于 2020-01-30 18:17:46
您可以使用来自其他版本的包:
wget http://mirrors.kernel.org/ubuntu/pool/main/d/double-conversion/libdouble-conversion1_2.0.1-4ubuntu1_amd64.deb
sudo apt install ./libdouble-conversion1_2.0.1-4ubuntu1_amd64.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/q/qt-at-spi/qt-at-spi_0.4.0-3_amd64.deb
sudo apt install ./qt-at-spi_0.4.0-3_amd64.deb然后,从终端安装数据包跟踪器:
sudo apt-get install <absolute/path/to/your/package>发布于 2020-04-20 16:05:29
下载数据包跟踪程序后,我尝试用sudo dpkg -i PacketTracer_730_amd64.deb安装它,得到了以下内容:
dpkg: dependency problems prevent configuration of packettracer:
packettracer depends on qt-at-spi; however:
Package qt-at-spi is not installed.当我试图安装qt-at-spi时,我收到了以下消息
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
qt-at-spi : Depends: libqt4-dbus (>= 4:4.8.0) but it is not going to be installed
Depends: libqtcore4 (>= 4:4.8~) but it is not going to be installed
Depends: libqtgui4 (>= 4:4.8~) but it is not going to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).运行sudo apt --fix-broken install修复了我的所有问题,安装了数据包跟踪器。
https://askubuntu.com/questions/1206794
复制相似问题