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
成功安装。