当你在 Bash 终端中遇到 -bash: apt-get: command not found 这个错误时,通常意味着 apt-get 命令在你的系统中不可用。apt-get 是Debian 及其衍生系统(如 Ubuntu)的包管理工具,用于安装、更新和删除软件包。以下是一些可能的解决步骤,我将根据你给出的提示进行回答: 1. 确认用户操作系统类型 首先,你需要确认...
Linux: -bash: apt-get: command not found apt-get: command not found,这个的出现是因为系统的原因。 Linux系统分为两种: 1.RedHat系列:Redhat、Centos、Fedora等 2.Debian系列:Debian、Ubuntu等 RedHat系列的包管理工具是yum Debian系列的包管理工具是apt-get 查看系统版本: # cat /proc/version Linux version...
Linux-下载命令问题(-bash: apt-get: command not found) Legents关注IP属地: 陕西 0.0662020.04.24 00:15:54字数222阅读6,176 出现这种提示的原因是系统版本不同所带来的包管理工具不同的问题。 Linux系统下由于系列所属不同,则对应的操作命令也略有不同。 1、Redhat系列 Redhat系列RHE、FedoraCore、CentOS等。
51CTO博客已为您找到关于-bash: apt-get: command not found的相关内容,包含IT学习相关文档代码介绍、相关教程视频课程,以及-bash: apt-get: command not found问答内容。更多-bash: apt-get: command not found相关解答可以来51CTO博客参与分享和学习,帮助广大IT技术人实现
你是root用户吗?另外,apt-get是ubuntu下命令。如果你是centos或者redhat是没有这个命令 的,你应该用yum命令。
方法2:确认命令已安装不是所有的Linux发行版都预装了所有命令,特别是对于非常用工具。如果尝试运行的命令尚未安装,你需要手动添加。使用发行版的软件包管理器,如apt-get、yum或zypper,来安装缺失的命令。如果某个流行命令被弃用,如ifconfig,记得寻找替代工具,如用ip命令替换。方法3:别名与脚本路径...
在Linux 系统中,使用 sudo 命令时提示“command not found”,首先执行以下命令看一下 /etc/sudoers.d 文件是否存在, find/etc/sudoers.d 1、如果返回No such file or directory,就说明你的系统没有安装sudo,下面是安装命令 : apt-getinstallsudo 如果提示E: Unable to locate package sudo的错误,先执行下面的...
Ubuntu系统下载gcc命令:apt-get install gcc 2.检查各个bin文件夹的内容是否非空 在使用其它相对更复杂的手段“还原”到之前好用的状态之前,应该先检查的bin文件夹里的命令是否都在,这个方法最简单也最直观。如果自己需要用到的命令所在的bin文件夹为空,那么就会理所应当的出现-bash: ***: command not found情况...
-bash: wget: command not found yum install wget -y Debian/Ubuntu系统,需要执行以下命令: apt-get install -y wget-bash: unzip: command not foundyum install unzip-bash: ntpdate: command not foundyum install ntpdate-bash: nmap: command not foundyum install nmap-bash: lsof: command not found...
bash:git: command 1. 2. 于是下面就开始我的解决问题之旅。 2. 解决方案 2.1 安装git 上面提示的错误就是我没有在Linux上安装git,所以使用下面命令即可: apt-get install git -y 安装完成后又出现了下面错误: (pytorch) root@dev-zzx-share:~/wyf/ModelStealing# apt-get install git -y ...