Skip to content

Commit

Permalink
setup.sh - Use build_helpers/install_ta-lib.sh for TA-Lib insta…
Browse files Browse the repository at this point in the history
…llation
  • Loading branch information
Rikj000 committed Sep 3, 2021
1 parent 93c1dff commit 103a8e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build_helpers/install_ta-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if [ ! -f "${INSTALL_LOC}/lib/libta_lib.a" ]; then
&& ./configure --prefix=${INSTALL_LOC}/ \
&& make -j$(nproc) \
&& which sudo && sudo make install || make install \
&& cd ..
&& cd .. && rm -rf ./ta-lib/
else
echo "TA-lib already installed, skipping installation"
fi
Expand Down
14 changes: 1 addition & 13 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,19 +95,7 @@ function install_talib() {
return
fi

cd build_helpers
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 --prefix=/usr/local
make
sudo make install
if [ -x "$(command -v apt-get)" ]; then
echo "Updating library path using ldconfig"
sudo ldconfig
fi
cd .. && rm -rf ./ta-lib/
cd ..
cd build_helpers && ./install_ta-lib.sh && cd ..
}

function install_mac_newer_python_dependencies() {
Expand Down

0 comments on commit 103a8e8

Please sign in to comment.