自升级到 18.04 以来,gstreamer 需要一个缺失的库:libiconv

自升级到 18.04 以来,gstreamer 需要一个缺失的库:libiconv

自从我升级到 18.04 以来,我的 gstreamer 安装就坏了:$ gst-launch-1.0 gst-launch-1.0: error while loading shared libraries: libiconv.so.2: cannot open shared object file: No such file or directory 我找不到这个库(我看到过帖子说它是 libc6 的一部分,但 libc6 已安装而 liniconv 不存在)。

我该如何修复 gstreamer?

为N0rbert添加:

$ ldd $(which gst-launch-1.0) | egrep "not|local"
libiconv.so.2 => not found
libpcre.so.1 => not found

答案1

我找到了一个解决方案。问题出在我使用的 Python 开发环境gstreamer和之间的交互非常糟糕。anaconda

我完全删除了anacondahttps://docs.anaconda.com/anaconda/install/uninstall/) 并且现在gstreamer可以正常工作。

诡异的!

我现在只需使用它pip来安装 python 包...

相关内容