Skip to content

Instantly share code, notes, and snippets.

@mayukojpn
Created January 1, 2015 10:30
Show Gist options
  • Save mayukojpn/55089303a4bb8294ed52 to your computer and use it in GitHub Desktop.
Save mayukojpn/55089303a4bb8294ed52 to your computer and use it in GitHub Desktop.
Wget コマンドをインストール
# 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