Table of contents

Install Teamviewer error in Centos: Requires: libQt5WebKitWidgets.so.5()(64bit) >= 5.5

Linux Aug 10, 2020 Viewed 574 Comments 0

Issue

In Centos, when I install Teamviewer with rpm package, run the following commands. Finally I get the error message saying:

$ sudo yum install ./teamviewer_15.8.3.x86_64.rpm teamviewer_15.8.3.x86_64.rpm
Error: Package: teamviewer-15.8.3-0.x86_64 (/teamviewer_15.8.3.x86_64)
           Requires: libQt5WebKitWidgets.so.5()(64bit) >= 5.5
Error: Package: teamviewer-15.8.3-0.x86_64 (/teamviewer_15.8.3.x86_64)
           Requires: libQt5WebKit.so.5()(64bit) >= 5.5
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

Solution

It needs to install qt5-qtwebkit.

1. Install from pkgs.org

Goto https://pkgs.org/search/?q=qt5-qtwebkit, download and install qt5-qtwebkit.

2. Install whth yum 

1. install epel repo

sudo yum -y install epel-release

2. install qt5-qtwebkit

sudo yum install qt5-qtwebkit
Updated Aug 10, 2020