stable/build_helpers/install_ta-lib.sh

14 lines
384 B
Bash
Raw Normal View History

2017-12-18 07:36:29 +00:00
if [ ! -f "ta-lib/CHANGELOG.TXT" ]; then
tar zxvf ta-lib-0.4.0-src.tar.gz
cd ta-lib \
&& sed -i.bak "s|0.00000001|0.000000000000000001 |g" src/ta_func/ta_utility.h \
&& ./configure \
&& make \
&& which sudo && sudo make install || make install \
&& cd ..
else
echo "TA-lib already installed, skipping download and build."
2018-08-05 21:28:53 +00:00
cd ta-lib && sudo make install && cd ..
fi