zorg ervoor dat Python al geïnstalleerd is, als je macOS 10.2 of hoger gebruikt, heb je waarschijnlijk al standaard een versie van Python geïnstalleerd. Om dit te controleren, typt u in een terminal:
$ which python
of
$ which python3
die iets als /usr/bin/python
zou moeten geven. Dit betekent dat Python op dit adres is geïnstalleerd.,
installatie
voordat u Python installeert, moet u XCode installeren, die kan worden gedownload vanuit de App Store, het macOS command line development package, command line tools, en de PIP en homebrew package managers.,
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