LoginSignup
3
2

More than 3 years have passed since last update.

TA-Libをdockerコンテナにインストールする

Last updated at Posted at 2019-12-19

AnacondaにTA-Libをインストールする
https://mrjbq7.github.io/ta-lib/index.html

DockerfileのTA-Libの部分を抜粋

FROM continuumio/anaconda3:2019.03
~~~
update等
~~~
RUN wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz && \
  tar -xvzf ta-lib-0.4.0-src.tar.gz && \
  cd ta-lib/ && \
  ./configure --prefix=/usr && \
  make && \
  make install
RUN pip install TA-Lib
RUN rm -R ta-lib ta-lib-0.4.0-src.tar.gz
3
2
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
3
2