尝试安装 Spek,但无法理解错误

尝试安装 Spek,但无法理解错误

我是 Linux 新手,我一直在尝试安装斯佩克但我一直收到这个错误:

configure: error: Package requirements (libavcodec >= 53.25 libavformat >= 53.17 libavutil >= 51.17) were not met:

No package 'libavcodec' found
No package 'libavformat' found
No package 'libavutil' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables FFMPEG_CFLAGS
and FFMPEG_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

我实际上拥有上述软件包的最新版本。

libavcodec58/focal,now 7:4.2.2-1ubuntu1 amd64 [installed]
libavformat58/focal,now 7:4.2.2-1ubuntu1 amd64 [installed]
libavutil56/focal,now 7:4.2.2-1ubuntu1 amd64 [installed]

有人可以帮助我完成安装吗?或者我遗漏了什么?

答案1

我想你现在可能已经有了答案。由于我在安装 Ubuntu 20.04 LTS 时遇到了一些问题,所以我发布了我的完整答案。

获取 sudo 权限并确保已安装所有库依赖项:

sudo -i
apt-get install -y intltool libavcodec-dev libavformat-dev libwxgtk3*-dev

从 git 下载 Spek 的最新版本(0.8.3):

cd /usr/src
git clone git://github.com/alexkay/

安装 Spek:

cd spek
./configure --prefix=/usr
make
make install

exit

相关内容