bash: apt: command not found...
时间: 2023-10-08 17:11:32 浏览: 237
docker容器中 bash: vi: command not found,docker apt-get 异常 Temporary failure resolving
bash: apt: command not found是因为在你的系统中没有安装apt这个包管理器。apt是Debian系列系统中的包管理工具,而在RedHat系列系统中使用的是yum。如果你希望在系统中使用apt来安装软件包,你可以尝试安装apt-get工具来代替。在Debian系列系统中,你可以使用以下命令来安装apt-get:
```
apt-get update
apt-get install apt
```
安装完毕后,你应该能够使用apt-get命令来管理软件包了。
阅读全文