Skip to content

Instantly share code, notes, and snippets.

@contribu
Created August 2, 2020 04:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save contribu/0afdd922e9c7798db67a03c8a7a51741 to your computer and use it in GitHub Desktop.
Save contribu/0afdd922e9c7798db67a03c8a7a51741 to your computer and use it in GitHub Desktop.
#!/bin/bash
# talib install script for kaggle
(
cd /tmp
wget https://artiya4u.keybase.pub/TA-lib/ta-lib-0.4.0-src.tar.gz
tar -xvf ta-lib-0.4.0-src.tar.gz
cd ta-lib
./configure --prefix=/usr
make -j4
make
make install
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment