Skip to content

Instantly share code, notes, and snippets.

@dreadjr
Forked from burakerdem/gist:d8195e6e343aa55ff578
Last active February 7, 2017 05:38
Show Gist options
  • Save dreadjr/cb4432e92d01feab2610cc9181610cc2 to your computer and use it in GitHub Desktop.
Save dreadjr/cb4432e92d01feab2610cc9181610cc2 to your computer and use it in GitHub Desktop.
Installing wget on Mac OS X El Capitan 10.11
curl -O http://ftp.gnu.org/gnu/wget/wget-1.17.tar.gz
tar -xzf wget-1.17.tar.gz
cd wget-1.17
ln -s /usr/local/opt/openssl /usr/local/ssl
./configure --with-ssl=openssl
./configure --with-ssl=openssl --with-libssl-prefix=/usr/local/ssl
make
sudo make install
wget --help
cd .. && rm -rf wget*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment