无法找到 ncurses 库

hii*_*ran 6 wine winetricks ncurses

我遇到了 Wine/winetricks 的问题,出现以下错误:

Wine cannot find the ncurses library (libncurses.so.6).
Run Code Online (Sandbox Code Playgroud)

但是,运行sudo apt install libncurses6只会通知我该软件包已安装

运行 18.10

N0r*_*ert 8

Wine 可能需要 32 位库。

你可以安装它

sudo apt-get install libncurses5:i386 libncurses6:i386
Run Code Online (Sandbox Code Playgroud)

然后重试。

  • 在我的情况下,错误是 _Wine 找不到 ncurses 库 (libncurses.so.5)。_ 解决方案是 `sudo apt-get install libncurses5:i386` (2认同)