#homebrew; #mac; #wget; How to install wget on your Mac #. Ok, so Mac is cool and stuff, but it doesn't come with wget by default, which in my opinion sucks.wget is a very useful tool and is used for downloading installation files among other stuff; it ought to be there on your Mac. I update mac to Sierra, 10.12.3. My wget stop working. When I tried to install by typing. Brew install wget -with-libressl I got the following warning. Warning: wget-1.19.1 already installed, it's just not linked. Then tried to unsintall by typing. Brew uninstall wget -with-libressl Then I reinstalled by typing. Brew install wget. Wget is a small program that can download files and folders to your computer through Terminal. There is already program similar to wget on your Mac, it is called curl. Although they do the same task, I prefer wget.
curl -O http://ftp.gnu.org/gnu/wget/wget-1.17.tar.gz |
tar -xzf wget-1.17.tar.gz |
cd wget-1.17 |
./configure --with-ssl=openssl |
./configure --with-ssl=openssl --with-libssl-prefix=/usr/local/ssl |
make |
sudo make install |
wget --help |
cd .. && rm -rf wget* |
Installation Wizard For Mac
Os X Update
commented Mar 17, 2016
I had to add the following before 4/5 lines above: |
commented May 29, 2016 •
OSX 10.11.4, here's what I get... . Alternatively, you may set the environment variables OPENSSL_CFLAGS To get pkg-config, see http://pkg-config.freedesktop.org/. pkg-config is available from the git repository at git://anongit.freedesktop.org/pkg-config Solution may be here: http://osxdaily.com/2012/05/22/install-wget-mac-os-x/#comment-1323553 |
commented Jul 17, 2018
Install Wget For Mac
If you have homebrew, |