Windows
1. Python をインストールする。バージョンは、安定板の python 3.7 にする。(3.7.6 など)
-
Download python-3.7.9-amd64.exe
これを実行して、指示に従ってインストールする。
“Add Python X.X to PATH” は必ずチェックする。
インストールができたかのの確認は、
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
からダウンロード&実行 してください。
Spyder をお勧めします。
https://docs.spyder-ide.org/current/installation.html
からダウンロード&実行 してください。
Mac ※「Homebrew」などは使わない。
1. Python をインストールする。バージョンは、安定板の python 3.7 にする。(3.7.6 など)
- Download macOS 64-bit installerインストールの確認は、
python3 -V
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
からダウンロード&実行 してください。
https://docs.spyder-ide.org/current/installation.html
からダウンロード&実行 してください。