首页 > 系统服务 > 详细

mac 安装wget报错-checking host system type... configure: error: can not guess host type; you must specify one

时间:2021-08-04 22:52:04      阅读:76      评论:0      收藏:0      [点我收藏+]

mac安装wget有两种方法

一是先安装homebrew 然后通过brew install wget 。

第二是官网下载wget的tar包,然后手动解压安装。本次遇到的错误是手动安装的时候。

 

手动安装步骤:

1.下载tar包解压。tar -zxvf wget_xxx.tar.gz

2.进入解压后的目录,先执行 ./configure ,然后依次执行 make,make install 。

在执行 ./configure 报错 :

checking host system type... configure: error: can not guess host type; you must specify one。

 

这个报错 先 执行 ./configure --help 查看 ./configure 支持的参数,发现可以通过 --host配置主机名。

hostname 或者 uname -a 获取到主机名,然后执行:

 

./configure --host=hostname

 

成功安装。

 

mac 安装wget报错-checking host system type... configure: error: can not guess host type; you must specify one

原文:https://www.cnblogs.com/wuyaguoke/p/15100396.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!