Linux中提示-bash: wget: command not found的解决方法
时间:12-16
作者:
Liunx系统中,-bash: wget: command not found是找不到命令的意思,也就是无法执行下载命令,主要是因为你的系统太干净了,没有安装下载命令的控制器,我们给系统安装个下载命令器即
Liunx系统中,-bash: wget: command not found是找不到命令的意思,也就是无法执行下载命令,主要是因为你的系统太干净了,没有安装下载命令的控制器,我们给系统安装个下载命令器即可。
CentOS系统:
yum install wget -y
1
Debian/Ubuntu系统,需要执行以下命令:
apt-get install -y wget
CentOS系统:
yum install wget -y
1
Debian/Ubuntu系统,需要执行以下命令:
apt-get install -y wget