Created
November 17, 2015 22:06
-
-
Save burakerdem/d8195e6e343aa55ff578 to your computer and use it in GitHub Desktop.
Installing wget on Mac OS X El Capitan 10.11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you have homebrew,
brew install wget
Solved this for me.