enable sudo for installing talib

This commit is contained in:
Janne Sinivirta 2017-12-18 09:14:40 +02:00
parent e3941cde7e
commit 4c0a316e3e
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
sudo: false sudo: true
os: os:
- linux - linux
language: python language: python

View File

@ -1,3 +1,3 @@
wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz
tar zxvf ta-lib-0.4.0-src.tar.gz tar zxvf ta-lib-0.4.0-src.tar.gz
cd ta-lib && ./configure && sudo make && sudo make install && cd .. cd ta-lib && ./configure && make && sudo make install && cd ..