Python 環境設定

Windows

1. Python をインストールする。バージョンは、安定板の python 3.7 にする。(3.7.6 など)

  • これを実行して、指示に従ってインストールする。
    “Add Python X.X to PATH” は必ずチェックする。
    PATHを設定する(2)

    インストールができたかのの確認は、
    python -V

2. パッケージのインストール
Command Prompt で以下のコマンドを実行する。(Command Promptの起動方法

pip install opencv-python
pip install pillow
pip install pygame
pip install matplotlib
pip install numpy
3. インストールされているパッケージのバージョン確認
   pip list | findstr opencv-python
4. IDLE以外のアプリでPython を動かしたい人は、
Spyder をお勧めします。
https://docs.spyder-ide.org/current/installation.html
からダウンロード&実行 してください。

Mac      ※「Homebrew」などは使わない。

1. Python をインストールする。バージョンは、安定板の python 3.7 にする。(3.7.6 など)

2. パッケージのインストール
Terminal で以下のコマンドを実行する。(Terminalの起動方法

python3 -m pip install opencv-python
python3 -m pip install pillow
python3 -m pip install pygame
python3 -m pip install matplotlib
python3 -m pip install numpy
4.IDLE以外のアプリでPython を動かしたい人は、
  Spyder をお勧めします。
https://docs.spyder-ide.org/current/installation.html
からダウンロード&実行 してください。