显示sudo: apt-get: command not found
时间: 2023-08-29 15:08:41 浏览: 158
Ubuntu基础教程之apt-get命令
5星 · 资源好评率100%
这个错误提示表示你的系统中没有安装 "apt-get" 这个命令,通常是因为你的系统不是基于 Debian 或 Ubuntu 的发行版。如果你使用的是其他的 Linux 发行版,可能需要使用该发行版特定的包管理器或者命令来安装软件包。如果你确信你的系统应该支持 "apt-get" 命令,那么可以尝试安装 "apt" 包以恢复该命令的功能。在 Debian/Ubuntu 发行版上,可以使用以下命令安装 "apt":
```
sudo apt-get update
sudo apt-get install apt
```
如果你的系统不是基于 Debian/Ubuntu 的发行版,则需要使用适合你的系统的包管理器或命令来安装 "apt" 包。
阅读全文