Jupyter Note Book 環境構築
2018-12-16 (Sun) · 68 words

構成

Homebrew
 |- python3
 |- pip3
     |- python3で使用するライブラリ...
 |- etc...

Python

$ brew install python3
$ witch python3
$ witch pip3

Libraries

$ pip3 install numpy  # 線形代数
$ pip3 install scipy  # 数式処理
$ pip3 install matplotlib   # 描画
$ pip3 install pandas  # データ操作
$ pip3 install scikit-learn # 分類や予測のためのモデルが詰まった機械学習用パッケージ
$ pip3 install chainer # ディープラーニング

Jupyter Note Book

$ pip3 install jupyter
$ jupyter notebook

Top     back     Posts     Tags     About Me