Install TeamViewer on CentOS 8

john2508
john2508 Posts: 1
edited May 2023 in General questions

Hi, any can said how install TeamViewer on CentOS 8? When execute .rpm display a failure with Qt5 WebKit...

 

Thanks @all

 

Comments

  • just install the missing libraries one by one, for example:

    sudo rpm -ivh teamviewer_15.1.3937.x86_64.rpm
    warning: teamviewer_15.1.3937.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 0c1289c0: NOKEY
    error: Failed dependencies:
    libQt5WebKit.so.5()(64bit) >= 5.5 is needed by teamviewer-15.1.3937-0.x86_64
    libQt5WebKitWidgets.so.5()(64bit) >= 5.5 is needed by teamviewer-15.1.3937-0.x86_64
    qt5-qtquickcontrols >= 5.5 is needed by teamviewer-15.1.3937-0.x86_64

    so, install these 3 missing libs:

    sudo dnf install libQt5WebKit*

    sudo dnf install libQt5WebKitWidgets*

    sudo dnf install qt5-qtquickcontrols

    then, reinstall teamviewer:

    sudo rpm -ivh teamviewer_15.1.3937.x86_64.rpm

    voila`