Deep LearningPython

【Python】Install Python3 MacOS パイソン3インストール

Python

Pythonのインストールをを紹介します。

Pythonが何がインストールされてるか確認

 

タミナールを開いてしたのコマンドを実行してみます。

python --version
Python 2.7.17

Python 3がすでにpython3としてインストールされている可能性があります。python3 –version コマンドを実行して確認してください。

XCodeをインストールする

Python 3の最初のステップは、ほとんどのプログラミング作業と同様にiOS開発に必要なAppleのXcodeプログラムをインストールすることです。ここではXcodeを使ってHomebrewをインストールしていきます。

 xcode-select --install

Homebrewをインストールする

次にHomebrewをインストールするには、以下のコマンドをターミナルにコピー&ペーストしてからEnterを入力します。

 ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

次にHomebrewのインストールために実行します。

brew doctor

↓↓↓↓

You should change the ownership of these directories to your user.
  sudo chown -R $(whoami) /usr/local/share/zsh /usr/local/share/zsh/site-functions /usr/local/var/homebrew/locks

And make sure that your user has write permission.
  chmod u+w /usr/local/share/zsh /usr/local/share/zsh/site-functions /usr/local/var/homebrew/locks
 

ディレクトリのpermissionをユーザーに変更する必要があります。

各自持っているパソコンよっては設定が違うのでパースを確認してpermissionの設定すしましょう。

brew link

↓↓↓↓

You should change the ownership of these directories to your user.
  sudo chown -R $(whoami) /usr/local/share/zsh /usr/local/share/zsh/site-functions /usr/local/var/homebrew/locks

And make sure that your user has write permission.
  chmod u+w /usr/local/share/zsh /usr/local/share/zsh/site-functions /usr/local/var/homebrew/locks
 

次はpython3をインストールを実行します。

brew install python3
 

permissionでパースがちゃんと通ったらpython3をインストールされます。

pythonのアップデート

python3をインストールした後アップデートしてみましょう。

brew upgrade python  

==> Upgrading 1 outdated package:
python 3.7.5 -> 3.7.7
==> Upgrading python 3.7.5 -> 3.7.7 
 

pythonのアップデート

python3をインストールした後アップデートしてみましょう。

またpermissionでのエラーが出て一部インストールできない場合は sudo chown -R $(whoami) /usr/local/XXXXXでパースを通してみましょう。