You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
706 B
31 lines
706 B
#!/bin/bash
|
|
|
|
# install python dependencies
|
|
if [ -f "requirements.txt" ]; then
|
|
pip install -r requirements.txt
|
|
fi
|
|
if [ $? != 0 ]; then
|
|
echo "Install python dependencies failed !!!"
|
|
exit 1
|
|
fi
|
|
|
|
# install package Soundfile
|
|
curl -O "http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28.tar.gz"
|
|
if [ $? != 0 ]; then
|
|
echo "Download libsndfile-1.0.28.tar.gz failed !!!"
|
|
exit 1
|
|
fi
|
|
tar -zxvf libsndfile-1.0.28.tar.gz
|
|
cd libsndfile-1.0.28
|
|
./configure && make && make install
|
|
cd -
|
|
rm -rf libsndfile-1.0.28
|
|
rm libsndfile-1.0.28.tar.gz
|
|
pip install SoundFile==0.9.0.post1
|
|
if [ $? != 0 ]; then
|
|
echo "Install SoundFile failed !!!"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Install all dependencies successfully."
|