Skip to content

Instantly share code, notes, and snippets.

@bassemfg
Forked from artiya4u/talib-install.sh
Created July 9, 2022 14:29
Show Gist options
  • Save bassemfg/4bf50acb9e0eaa71230179b8a56826cc to your computer and use it in GitHub Desktop.
Save bassemfg/4bf50acb9e0eaa71230179b8a56826cc to your computer and use it in GitHub Desktop.
Install TA-Lib script
#!/usr/bin/env bash
sudo apt install build-essential wget -y
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
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment