Created
October 10, 2013 10:56
-
-
Save ikegami-yukino/6916600 to your computer and use it in GitHub Desktop.
buntu 12.10にMahout 0.8を入れるスクリプト
This file contains hidden or 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
# | |
# Ubuntu 12.10にMahout 0.8を入れるスクリプト | |
# | |
# Installing Maven | |
#sudo apt-get install maven | |
sudo apt-get install subversion | |
# Installing Mahout | |
#wget http://ftp.riken.jp/net/apache/mahout/0.8/mahout-distribution-0.8-src.zip | |
#unzip mahout-distribution-0.8-src.zip | |
svn co http://svn.apache.org/repos/asf/mahout/trunk | |
sudo mv trunk /usr/local/mahout | |
#rm mahout-distribution-0.8-src.zip | |
cd /usr/local/mahout | |
mvn install | |
echo 'export MAHOUT_LOCAL=/usr/local/mahout' >> ~/.bashrc | |
source ~/.bashrc | |
sudo apt-get install curl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment