1
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WindowsでPython3とNumPy, SciPy, Matplotlib, pandas, scikit-learn, OpenCVをインストールした

Last updated at Posted at 2019-08-04

はじめに

Python3をインストールします。
それに併せて、パッケージ(NumPy, SciPy, Matplotlib, pandas, scikit-learn, OpenCV)のインストールも行います。

環境

Windows10

実装

Pythonをインストールする

下記よりPython3をダウンロードしました。
https://www.python.org/downloads/windows/

Stable Releases
L Python 3.7.4 - July 8, 2019
  L Download Windows x86-64 web-based installer

PowerShellを開き、以下のコマンドでPythonがインストールされていることを確認します。

python

正常にインストールされている場合、コマンドラインからPythonを実行できるようになっています。
終了したい場合は以下のコマンド。

exit()

必要なパッケージをインストールする

OpenCVはインストールしてからPythonに関連付けるのは手間らしいので、非公式ビルド済みパッケージをインストールしました。
参考(pip で OpenCV のインストール)
下記のようにインストールしていく。

python -m pip install numpy
python -m pip install scipy
python -m pip install matplotlib
python -m pip install pandas
python -m pip install scikit-learn
python -m pip install opencv-contrib-python

次に、正常にインストールされたかを確認する。

python -m pip list

Package               Version
--------------------- --------
cycler                0.10.0
joblib                0.13.2
kiwisolver            1.1.0
matplotlib            3.1.1
numpy                 1.17.0
opencv-contrib-python 4.1.0.25
pandas                0.25.0
pip                   19.0.3
pyparsing             2.4.2
python-dateutil       2.8.0
pytz                  2019.2
scikit-learn          0.21.3
scipy                 1.3.0
setuptools            40.8.0
six                   1.12.0

以上です。

1
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?