2013年7月28日 星期日

[研究] Apache Mahout 0.8 安裝 (CentOS 6.4 x64)

[研究] Apache Mahout 0.8 安裝 (CentOS 6.4 x64)

2013-07-28

Mahout's goal is to build scalable machine learning libraries.

官方網站
http://mahout.apache.org/

簡介
https://cwiki.apache.org/confluence/display/MAHOUT/Overview

下載
http://www.apache.org/dyn/closer.cgi/mahout/
http://ftp.tc.edu.tw/pub/Apache/mahout/0.8/mahout-distribution-0.8-src.tar.gz

需求
Java 1.6.x or greater.
Maven 3.x to build the source code.

安裝參考
https://cwiki.apache.org/confluence/display/MAHOUT/BuildingMahout
https://cwiki.apache.org/confluence/display/MAHOUT/Mahout+Wiki#MahoutWiki-Installation%2FSetup

安裝

# 安裝 SubVersion (SVN)
yum -y install subversion

# 安裝 Java JDK
rpm -ivh jdk-7u25-linux-x64.rpm

# 安裝 Apache Maven
wget http://ftp.tc.edu.tw/pub/Apache/maven/maven-3/3.1.0/binaries/apache-maven-3.1.0-bin.tar.gz
tar zxvf apache-maven-3.1.0-bin.tar.gz -C /usr/local
export M2_HOME=/usr/local/apache-maven-3.1.0
export M2=$M2_HOME/bin
# MAVEN_OPTS 非必須
export MAVEN_OPTS="-Xms256m -Xmx512m"
export PATH=$M2:$PATH
export JAVA_HOME=/usr/java/jdk1.7.0_25
#測試安裝是否成功
/usr/local/apache-maven-3.1.0/bin/mvn -version

# 用 SVN 下載 Mahout
svn co http://svn.apache.org/repos/asf/mahout/trunk

# 切換到 core 目錄,編譯、安裝
cd /root/trunk/core
mvn compile
mvn install

# 切換到範例目錄,編譯
cd /root/trunk/examples
mvn compile


根據 /root/trunk/CHANGELOG 內容,可能算是 0.8 build 1295 版吧
Release 0.9 - unreleased
  MAHOUT-1295: Excluded all Maven's target directories from distribution archives (sslavic)
Release 0.8 - 2013-07-25

(完)

[研究] Apache Mahout 0.8 安裝 (CentOS 6.4 x64)
http://shaurong.blogspot.tw/2013/07/apache-mahout-08-centos-64-x64.html
http://forum.icst.org.tw/phpbb/viewtopic.php?t=80039

[研究] Apache Maven 3.1.0 安裝 (CentOS 6.4 x64)
http://shaurong.blogspot.tw/2013/07/apache-maven-310-centos-64-x64.html
http://forum.icst.org.tw/phpbb/viewtopic.php?t=80036

[研究] SubVersion 1.6.11 安裝 (yum)(CentOS 6.4 x64)
http://shaurong.blogspot.tw/2013/07/subversion-1611-yumcentos-64-x64.html
http://forum.icst.org.tw/phpbb/viewtopic.php?t=80037

[研究] Hadoop 1.1.2 安裝 (CentOS 6.4 x64)
http://shaurong.blogspot.tw/2013/07/hadoop-112-centos-64-x64.html
http://forum.icst.org.tw/phpbb/viewtopic.php?t=80035

沒有留言:

張貼留言