[root@iZ2vcgvosco7pm5866pxruZ /]# sudo apt-get remove libncurses* sudo: apt-get: command not found
时间: 2024-04-29 12:18:31 浏览: 105
Linux apt 命令
5星 · 资源好评率100%
在Linux系统中,apt-get是Debian和Ubuntu等基于Debian的发行版中用于包管理的命令。而你提到的命令是在一个以[root@iZ2vcgvosco7pm5866pxruZ /]#开头的提示符下执行的,这看起来更像是CentOS或者其他基于Red Hat的发行版。
在CentOS或者其他基于Red Hat的发行版中,包管理器是yum而不是apt-get。所以,如果你想要移除libncurses*这个包,你可以使用以下命令:
```
sudo yum remove libncurses*
```
阅读全文