Pythonが既にインストールされていることを確認してください。macOS10.2以降を使用して 確認するには、ターミナルに入力します。
$ which python
または
$ which python3
これは/usr/bin/python
のようなものを返すはずです。 これはPythonが設置されます。,
インストール
Pythonをインストールする前に、App Store、macOSコマンドライン開発パッケージ、コマンドラインツール、PIPおよびhomebrewパッケージマネージャからダウンロードできるXCodeをインストールする必要があります。,
Para instalar o command line tools, digite em um terminal:
$ xcode-select --install
Para instalar o pip, digite em um terminal:
$ sudo easy_install pip
Para atualizar o pip, digite em um terminal:
$ sudo pip install --upgrade pip
Para instalar o homebrew, digite em um terminal:
$ ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
Para instalar o Python 2, digite em um terminal:
$ brew install python
Para instalar o Python 3, digite em um terminal:
$ brew install python3