6

I've run into a problem with Wine/winetricks, where I get the following error:

Wine cannot find the ncurses library (libncurses.so.6).

However, running sudo apt install libncurses6 just gives me a notification that the package is already installed

Running 18.10

hiigaran
  • 6,843

3 Answers3

9

Wine may need 32-bit library.

You can install it with

sudo apt-get install libncurses5:i386 libncurses6:i386

and then retry.

N0rbert
  • 103,263
3

Run these commands Below:


Wine may need a 32 bit library You can install it with :

sudo apt-get install libncurses6:i386

and then try :

sudo apt-get install libncurses5:i386

That should work..

Output terminal

enter image description here

Ibster
  • 402
0

Below command fixed it for me if nothing above helps.

sudo apt-get install libncurses5-dev libncursesw5-dev

Jegan
  • 1