Created
January 1, 2015 10:30
-
-
Save mayukojpn/55089303a4bb8294ed52 to your computer and use it in GitHub Desktop.
Wget コマンドをインストール
This file contains hidden or 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
# http://pecoegg.com/website-131.html を参考にしました。 | |
# Macは初めから入っていないのでインストールしましょう | |
# | |
# 1)ダウンロード | |
sudo curl -O http://ftp.gnu.org/pub/gnu/wget/wget-1.15.tar.gz | |
# 2)解凍 | |
sudo tar zxvf wget-1.15.tar.gz | |
# 3)解凍フォルダへ移動 | |
cd wget-1.15 | |
# 4)configure (3分くらいかかる) | |
sudo ./configure --with-ssl=openssl | |
# 5)make 長いぜ | |
sudo make | |
# 6)make install | |
sudo make install | |
# 7)インストールチェック | |
wget | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment