0
点赞
收藏
分享

微信扫一扫

QT--day6(人脸识别、图像处理)

非宁静不致远 2023-08-04 阅读 37

1、报错 -bash: wget: command not found

可以重装 wget 工具:

卸载 wget 工具

yum remove wget

下载 wget 工具

yum -y install wget

如果还是不能执行wget url 命令,依旧报错 -bash: wget: command not found,就执行如下命令:

1)卸载 wget 工具

yum remove wget

2)清除yum缓存:

rm -rf /var/cache/yum/*

3)清除所有yum:

yum clean all

4)显示仓库列表:

yum repolist

5)下载 wget 工具

yum -y install wget

参考链接

1. 已经安装完【wget】,但是执行【wget url】时还是提示:“-bash: wget: command not found”

举报

相关推荐

0 条评论