4
7

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.

Python3.5 + NumPy + SciPy をWindows10にインストールして動かす

Last updated at Posted at 2016-07-13

#はじめに
Pythonを全く触ったことがない初心者がPython + SciPyをインストールして動かそうとしたところ、いろいろとハマったので、備忘録もかねてインストールして動かすまでの過程を記事にまとめてみました。

1. Pythonのインストール

Python公式サイト からPython3.5のインストーラーをダウンロード。
image

筆者はWindows10(64bit)を使っているので Windows x86-64 executable installer をダウンロードしました。
image

実行すると以下のようなウィンドウが出るのでAdd Python 3.5 to PATH にチェックを入れて Install Now をクリック
image

インストールが完了すると以下のような画面が出るのでCloseをクリックしてインストーラを閉じます。
image

##インストール確認
コマンドプロンプトで python と入れてEnter。
Pythonが起動すればPythonのインストールは成功です。
image

2. NumPy+MKLをインストール

SciPyを動かすためにはNumPyとMKLが必要らしいので、下記URLからNumPy+MKLのWHLファイルをダウンロードしてきます。
http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy

筆者はWindows10(64bit), Python3.5系なので numpy-1.11.1+mkl-cp35-cp35m-win_amd64.whl をダウンロードしました。
image

次にコマンドプロンプトを開いて pip install (WHLファイルパス) を実行し、ダウンロードしてきたWHLファイルをインストールします。
image
コマンドプロンプトに Sucessfully... と表示されればNumPy+MKLのインストールの完了です。

3. SciPyをインストール

下記URLからSciPyのWHLをダウンロードしてきます。
http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy

筆者はWindows10(64bit), Python3.5系なので scipy-0.18.0rc2-cp35-cp35m-win_amd64.whl をダウンロードしました。

pip installしてインストールします。
image

#インストール確認
コマンドプロンプトでpip freezeを実行するとインストールされているパッケージを確認することができます.
image
NumPy + MKL と SciPyがインストールされていることが確認できました。

#NumPy + SciPyの動作確認
正しくインストールされていることを確認するために以下のpyファイルを実行してみます

test.py
import numpy as np
from scipy import integrate

def computePi(x):
    return 4/(1+x**2)

print (integrate.quad(computePi, 0, 1))

image.png
正しく動くことが確認できました。

#余談
余談ですが、 Atomエディターを使うとエディター上でpyファイルを実行することができるのでオススメです。
image.png

atom-runnerをインストールすればエディター上でpyが実行できるようになります
image.png

4
7
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
4
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?