ENH: Add visualization to python package

This commit is contained in:
sinhrks
2015-08-11 16:40:09 +09:00
parent a7202ee804
commit d24b36adf9
9 changed files with 311 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ fi
brew update
if [ ${TASK} == "python-package" ]; then
brew install python git
brew install python git graphviz
easy_install pip
pip install numpy scipy nose
fi

View File

@@ -34,6 +34,8 @@ if [ ${TASK} == "R-package" ]; then
fi
if [ ${TASK} == "python-package" ]; then
sudo apt-get install graphviz
sudo pip install matplotlib graphviz
make all CXX=${CXX} || exit -1
nosetests tests/python || exit -1
fi