3,308 views
この記事は最終更新から 2581日 が経過しています。
(1) Anacondaをインストール
Anacondaは Pythonで数値計算するときに必要なパッケージ類をまとめてインストールしてくれて便利。
wget https://repo.continuum.io/archive/Anaconda3-4.4.0-Linux-x86_64.sh chmod +x Anaconda3-4.4.0-Linux-x86_64.sh ./Anaconda3-4.4.0-Linux-x86_64.sh
AnacondaのPython3を実行してみる。
export PATH=~/anaconda3/bin/:$PATH python3
(2) ローソク足チャートを表示
under construction