How to install "Python + SciPy + NumPy + PyLab"

<インストール方法>
PythonClick here!
・SciPy⇒Click here!
・NymPy⇒Click here!
・PyLab(matplotlib)⇒Click here!

                                                                                                      • -


Pythonコマンドプロンプトで実行⇒
[コントロールパネル]→[システム]→[詳細設定]で環境変数PATHの最後に;C:\Python25を追加
そして,シェル上でpythonと打つ.

・SciPyを使用⇒シェル上で >>>from scipy import *
・PyLabを使用⇒シェル上で >>>from pylab import *

注:NumPyはSciPyを起動するのに必要!

                                                                                                      • -

from scipy import *
from pylab import *
x = arange(0,2*pi,0.01)
y = sin(x)
plot(x,y)
show()