sudo apt-get update sudo: apt-get: command not found
时间: 2023-08-12 15:05:45 浏览: 137
您好!根据您提供的信息,看起来您的系统可能不是基于 Debian 或 Ubuntu。apt-get 是 Debian 系统中用于包管理的工具,而不是在其他发行版中使用的工具。
如果您的系统是基于其他发行版的,可以尝试使用相应的包管理工具来更新软件包列表。例如,在基于 CentOS 或 Fedora 的系统上,可以使用以下命令更新软件包列表:
sudo yum update
如果您还有其他问题,请随时提问!
相关问题
sudo apt-get update sudo: apt-get: command not found
这个问题可能是由于apt-get命令没有正确安装导致的。您可以尝试使用以下命令来安装apt-get:
```
sudo apt-get install apt
```
如果您的系统已经安装了apt-get,但仍然出现此错误,请尝试使用以下命令更新apt-get:
```
sudo apt-get update
```
如果您的系统仍然无法找到apt-get命令,请尝试使用以下命令手动下载并安装apt-get:
```
sudo apt-get install wget
wget http://archive.ubuntu.com/ubuntu/pool/main/a/apt/apt_1.6.12_amd64.deb
sudo dpkg -i apt_1.6.12_amd64.deb
```
请注意,上述命令中的apt版本可能会随着时间的推移而发生变化。您可以在http://archive.ubuntu.com/ubuntu/pool/main/a/apt/上找到最新版本的apt-get。
[root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get install sudo apt-get sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get install sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get update sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get install software-properties-common sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo add-apt-repository ppa:mc3man/mpv-tests sudo: add-apt-repository: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get update sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get install mpv sudo: apt-get: command not found你的方法不行
非常抱歉,我之前的回答有误,CentOS 并不支持 apt-get 命令。在 CentOS 中,你可以使用 yum 命令来安装软件包。
要安装 mpv 播放器,可以使用以下命令:
```
sudo yum install epel-release
sudo yum install mpv
```
第一条命令是安装 EPEL 软件源,第二条命令是安装 mpv 播放器。请注意,你需要具有 sudo 权限才能运行这些命令。
阅读全文