3

During installation of Packet Tracer 7.1, I've encountered no problems. When trying to run

~$ packettracer

nothing happened, no welcome screen or anything. I then typed

~$ cd /opt/pt/bin
~$ ./PacketTracer7

which returned the following message:

./PacketTracer7: error while loading shared libraries: libQt5WebKitWidgets.so.5: cannot open shared object file: No such file or directory

To determine which libraries were missing, I issued the following command:

~$ ldd PacketTracer7

to get the list of missing libraries. The following turned out being missing:

  1. libQt5WebKitWidgets.so.5
  2. libQt5WebKit.so.5
  3. libQt5Multimedia.so.5
  4. libQt5PrintSupport.so.5

My question is: how do I install those packages, because running the following command did not work:

~$ sudo apt-get install libQt5WebKitWidgets*

The error message was:

E: Unable to locate package libQt5WebKitWidgets*
E: Couldn't find any package by glob 'libQt5WebKitWidgets*'
E: Couldn't find any package by regex 'libQt5WebKitWidgets*'

Can somebody please help me?

Pero Alex
  • 41
  • 1
  • 4

1 Answers1

4

Please try:

sudo apt update
sudo apt install libqt5webkit5 libqt5multimedia5 libqt5printsupport5 libqt5script5 libqt5scripttools5 

And try again.

chili555
  • 61,330