当前位置: 首页 > 工具软件 > GNU Wget > 使用案例 >

本地安装wget命令

习狐若
2023-12-01

第一步:执行 wget www.baidu.com ,若没有,会提示:-bash: wget: command not found

第二步:通过这个http://ftp.gnu.org/gnu/wget/下载wget的源代码wget-1.5.3.tar.gz

第三步:通过命令行进入到下载后的文件夹,如:cd Downloads

第四步:执行 tar -zxvf wget-1.5.3.tar.gz

第五步:进入到解压好的文件:cd wget-1.5.3

第六步:执行  ./configure ,若报错如下:

configuring for GNU Wget 1.5.3

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

则执行如下命令:./configure --host=avr

第七步:执行sudo make install

第八步:执行make 命令(直接输入make后按回车)

wget www.baidu.com测试如果有返回则成功

 类似资料: