sudo: apt-get command not found
时间: 2023-11-20 13:58:08 浏览: 172
sudo apt-get update时的问题
根据提供的引用内容,如果出现 "sudo: apt-get command not found" 的错误提示,可能是因为系统没有安装 apt-get 命令。可以按照以下步骤进行解决:
1. 首先,执行以下命令更新软件包列表:
```shell
sudo apt-get update
```
2. 如果更新成功,但是执行 apt-get 命令仍然提示 "sudo: apt-get command not found",则说明系统没有安装 apt-get 命令。可以使用以下命令安装 apt-get:
```shell
sudo apt-get install apt-get
```
安装完成后,再次执行需要的命令即可。
阅读全文