8 lines
255 B
Bash
Executable File
8 lines
255 B
Bash
Executable File
if [ ! -f "ta-lib/CHANGELOG.TXT" ]; then
|
|
tar zxvf ta-lib-0.4.0-src.tar.gz
|
|
cd ta-lib && ./configure && make && sudo make install && cd ..
|
|
else
|
|
echo "TA-lib already installed, skipping download and build."
|
|
cd ta-lib && sudo make install && cd ..
|
|
fi
|