When I tried to install Cisco packet tracer from deb
file it gave the following error:
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
Then I tried installing libdouble-conversion1
using command sudo apt-get install libdouble-conversion1
. It gives the following error
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
Download these packages first:
Open terminal and change directory to Downloads (where the downloaded packages exist)
Make all the downloaded packages executable (
chmod +x packagename
)Copy
/home/username/.config/mimeapps.list
to/root/.config/
Install libdouble-conversion1 and qt-at-spi packages (
sudo dpkg -i packagename
)Install libjpeg-turbo8 package. Here, you may find library conflict error. If so, remove the old one (
sudo apt purge packagename
). There will be some warning.Just type this command (sudo apt --fix-broken install
). And then, remove again. Now, you can install libjpeg-turbo8 package again.Install libjpeg8 package.
Finally, you can install Packet Tracer 7.3 package.\
Good luck
You can use packages from other versions:
And then, install Packet Tracer from terminal:
After downloading packet tracer,I tried installing it with
sudo dpkg -i PacketTracer_730_amd64.deb
and got this:When i tried to install
qt-at-spi
I got this messageRunning
sudo apt --fix-broken install
fixed all my issues,packet tracer was installed.