我从 VLC 媒体播放器的网站下载了 .tar 文件。下载的版本支持 Ubuntu 18.04。我按照说明操作,但未能成功安装。进入./configure
终端后,我收到以下错误消息:
configure: error: Could not find lua.
Lua is needed for some interfaces (rc, telnet, http) as well as many other custom scripts.
Use --disable-lua to ignore this error.
答案1
问题中的错误消息表明要向命令--disable-lua
中添加选项./configure
以忽略错误消息,如下所示:
./configure --disable-lua
./configure --help
将显示该特定configure
脚本的所有选项。
或者,您可以安装 lua5.2 包并运行./configure
而不使用任何选项。此包包含 Lua 命令行解释器和字节码编译器。如果您正在开发或使用 Lua 脚本,请安装它。
sudo apt install lua5.2
如果您接受从其网站下载的 Ubuntu 软件替代方案来编译 VLC,您可以选择 vlc 3.0 apt 包 ( sudo apt install vlc
) 或 vlc 4.0 edge channel snap 包 ( sudo snap install vlc --channel edge
)。