Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
15 lines (11 sloc)
308 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Install CoMIK | |
chmod +x mkl.py | |
export PATH=".:$PATH" | |
#Check dependenciespython -c "import modshogun" | |
if python -c "import modshogun"; | |
then | |
echo "You can now run the test_install.sh script." | |
else | |
echo "You need to install SHOGUN. Once done, you can run the test_install.sh script." | |
fi |