sudo: apt-get: command not found yanzi@yanzideAir ~ % sudo apt-get install apt sudo: apt-get: command not found yanzi@yanzideAir ~ %
时间: 2023-10-12 20:42:15 浏览: 95
你的问题是关于`sudo: apt-get: command not found`错误。这个错误通常表示你的系统没有安装`apt-get`命令。`apt-get`是Debian和Ubuntu系统中用于包管理的工具。
如果你使用的是非基于Debian或Ubuntu的系统,例如Fedora或CentOS,你需要使用对应系统的包管理工具,比如`dnf`或`yum`。
如果你确实使用的是Debian或Ubuntu系统,但出现了这个错误,可能是因为你的系统没有正确安装或配置`apt-get`。你可以尝试以下步骤来解决问题:
1. 确认你的系统是Debian或Ubuntu,并且版本正确。
2. 运行`sudo apt update`命令来更新包列表。
3. 如果更新过程中没有错误,尝试运行`sudo apt install apt`命令来安装`apt-get`。
4. 如果上述步骤都失败了,可能需要重新安装你的操作系统或寻求其他技术支持。
希望这些信息对你有帮助!如果还有其他问题,请随时提问。
相关问题
[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 权限才能运行这些命令。
执行命令:sudo apt-get install zip后,出现错误:sudo: apt-get: command not found
执行命令sudo apt-get install zip时,出现sudo: apt-get: command not found错误的原因是系统中没有安装apt-get包管理器。apt-get是Debian系列Linux发行版(如Ubuntu)中常用的包管理工具。如果你使用的是其他Linux发行版,可能需要使用其他的包管理器来执行相应的操作。
阅读全文