Skip to content

Instantly share code, notes, and snippets.

@ryanleland
Created December 24, 2014 16:52
Show Gist options
  • Save ryanleland/1b4106e4672dac2b0dd8 to your computer and use it in GitHub Desktop.
Save ryanleland/1b4106e4672dac2b0dd8 to your computer and use it in GitHub Desktop.
Install script for ta-lib.
#!/bin/sh
# Download
cd /tmp
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
# Build
cd ta-lib
./configure
make
make install
# Cleanup
cd ../
rm ta-lib-0.4.0-src.tar.gz
rm -rf ta-lib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment