Skip to content

Instantly share code, notes, and snippets.

View ayoubbensakhria's full-sized avatar

Ayoub Bensakhria ayoubbensakhria

View GitHub Profile
@ayoubbensakhria
ayoubbensakhria / talib.ipy
Created January 1, 2022 22:25 — forked from trufanov-nok/talib.ipy
Installing TA-Lib on Jupyter Notebook
!wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz
!tar -xzf ta-lib-0.4.0-src.tar.gz
%cd ta-lib/
!./configure --prefix=$HOME
!make
!make install
!TA_LIBRARY_PATH=~/lib TA_INCLUDE_PATH=~/include pip install ta-lib