Homebrewは、Mac用のパッケージ管理システムです。Pythonで機械学習を行う上では必須のソフトウエアなので、真っ先にインストールすることをお勧めします。
サイトに飛ぶと、ターミナルに以下のコマンドを入力するよう書かれていますので、その通りに入力(コピペ)します。
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
インストールの最後で、次のような記述が出てきますので、指示通りにPathを通します。
==> Next steps:
- Run these three commands in your terminal to add Homebrew to your PATH:
echo '# Set PATH, MANPATH, etc., for Homebrew.' >> /Users/(ユーザー名)/.zprofile
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/(ユーザー名)/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
以下のコマンドを入力して、Pathを通します。
$ echo '# Set PATH, MANPATH, etc., for Homebrew.' >> /Users/(ユーザー名)/.zprofile
$ echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/(ユーザー名)/.zprofile
$ eval "$(/opt/homebrew/bin/brew shellenv)"
最後に、以下のコマンドを入力して、Homebrewのバージョンが表示されたら成功です。
% brew --version
以下のコマンドを実行して、インストールができる環境を作成します。
$brew install wget