-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.sh
executable file
·38 lines (33 loc) · 1.01 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#! /usr/bin/env 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 libsndfile
# python -c "import soundfile"
# if [ $? != 0 ]; then
# echo "Install package libsndfile into default system path."
# wget "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 > /dev/null && make > /dev/null && make install > /dev/null
# cd ..
# rm -rf libsndfile-1.0.28
# rm libsndfile-1.0.28.tar.gz
# fi
# install decoders
python -c "import pkg_resources; pkg_resources.require(\"swig_decoders==1.1\")"
if [ $? != 0 ]; then
cd decoders/swig > /dev/null
bash setup.sh
cd - > /dev/null
fi
echo "Install all dependencies successfully."