其他分享
首页 > 其他分享> > error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file

error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file

作者:互联网

ncurses 提供字符终端处理库,包括面板和菜单。它提供了一套控制光标、建立窗口、改变前景/背景颜色及处理鼠标操作的函数,使用户在字符终端编写应用程序时绕过了那些恼人的底层机制。简而言之,它是一个可以使应用程序直接控制终端屏幕显示的函数库。

解决缺少libncurses.so.5库文件

sudo apt install apt-file
sudo apt-file update
sudo apt-file find libncurses.so.5
sudo apt install libncurses5

 

本文直接引用>>

标签:sudo,apt,libncurses,so.5,file,such,shared
来源: https://www.cnblogs.com/zjazn/p/16081164.html