kharukaのブログ~お金と技術とキャリア~

Edu Fin~金融×教育~若いうちからお金について学ぶってだいじ!学んだテクノロジーはみんなの財産。過去、現在、将来の人生についてのブログ

NumPyのインストール

入門 Python 3

入門 Python 3

【前提条件】

OS:Windows 10 64-bit, version 1607

Anaconda 4.4.0(Python 3.6 version 64-bit)インストー

【手順】

1.コマンドプロンプトpython -m pip install numpyと打ちます。

C:\Users\<user name>>python -m pip install numpy
Requirement already satisfied: numpy in c:\users\<user name>\appdata\local\continuum\anaconda3\lib\site-packages

NumPyがAnacondaインストール時に一緒にインストールされていた様ですね。

2.コマンドプロンプトpython -m pip listと打ちます。

C:\Users\<user name>>python -m pip list
DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.
...
numpy (1.12.1)
...

実際にNumPy(1.12.1)がインストールされていることが確認出来ました。

Pythonではじめる機械学習 ―scikit-learnで学ぶ特徴量エンジニアリングと機械学習の基礎

Pythonではじめる機械学習 ―scikit-learnで学ぶ特徴量エンジニアリングと機械学習の基礎

参考:

Python入門から応用までの学習サイト

NumPyのインストール - Python入門から応用までの学習サイト

WindowsでPython3, numpy, pandas, matplotlibなどインストー

qiita.com