sudo apt-get install apt sudo: apt-get: command not found
时间: 2023-11-20 18:58:50 浏览: 105
apt-get命令 安装软件
根据引用的提示,系统找不到apt-get命令,可能是因为apt-get没有安装或者没有在系统路径中。您可以尝试使用以下命令安装apt-get:
```shell
sudo apt-get update
sudo apt-get install apt
```
如果您仍然遇到相同的错误,请尝试使用引用中提供的解决方法修复缺失的包和自动清理。如果问题仍然存在,请检查您的系统路径是否正确配置。
阅读全文