Creates a problem for gobject-introspection identifying what version of vte is really allowed. Vte 2.91 is installed on the host but the RPM is built requiring 2.90. Index: virt-manager-2.0.0/virtManager/serialcon.py =================================================================== --- virt-manager-2.0.0.orig/virtManager/serialcon.py +++ virt-manager-2.0.0/virtManager/serialcon.py @@ -12,12 +12,12 @@ from gi.repository import Gtk # We can use either 2.91 or 2.90. This is just to silence runtime warnings # pylint: disable=wrong-import-position -try: - gi.require_version("Vte", "2.91") - logging.debug("Using VTE API 2.91") -except ValueError: - gi.require_version("Vte", "2.90") - logging.debug("Using VTE API 2.90") +#try: +# gi.require_version("Vte", "2.91") +# logging.debug("Using VTE API 2.91") +#except ValueError: +# gi.require_version("Vte", "2.90") +# logging.debug("Using VTE API 2.90") from gi.repository import Vte import libvirt