Welcome to Our Website

Mac OS XへのPythonのインストール

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

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です