我正在尝试让一个简单的GstRtspServer程序在当前的外部Amazon Linux Linux EC2服务器上工作,但是我在使其真正运行时遇到了严重的问题。无论我做什么,即使尝试将程序简化为

import gi
gi.require_version('Gst','1.0')
from gi.repository import GLib, Gst, GstRtspServer


我已经安装了pygobject,已经安装了gstreamer,已经安装了gobject-introspection,任何Google结果都毫无帮助。有人知道我可能会缺少什么吗?

最佳答案

具体来说,在Ubuntu 16.04上,必须安装软件包gir1.2-gst-rtsp-server-1.0,其中包含自检类型库。

关于python - ImportError:无法导入名称GstRtspServer,找不到内省(introspection)类型库,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52634893/

10-13 04:55