Problem: Research about mahout.
Solution: Obtain a running mahout code but this would require an VirtualBox with Ubuntu instance on my Windows machine.
Here are the steps I underwent:
- Download Oracle VM VirtualBox for Windows host.
- Install VirtualBox to your Windows machine.
- Download ISO of Ubuntu.
- Burn ISO to CD/DVD.
- Before “Starting” the VirtualBox instance, click on Settings and choose the boot device to CD/DVD. Click OK to save the settings.
- Click the Devices menu, select the CD/DVD Devices of the Host.
- Click Start to turn on the VirtualBox instance and initiate Ubuntu installation.
After Ubuntu has been installed, run the Applications > Accessories >Terminal
- type java and see the suggested <java-package>
- type sudo apt-get install <java-package>
- type javac and see the suggested <javac-package>
- type sudo apt-get insatll <javac-package>
- type mvn and see the suggested <maven-package>
- type sudo apt-get install <maven-package>
- type svn and see the suggested <subversion-package>
- type sudo apt-get install <subversion-package>
- type cd /etc
- type sudo chmod 777 bash.bashrc
- type vi bash.bashrc
- at the end of the file append the path to your java installation
JAVA_HOME=/usr/lib/jvm/java-1.6.0-openjdk
export JAVA_HOME
PATH=$PATH:$JAVA_HOME/bin
export $PATH
- reboot the VirtualBox instance
- type cd ~/Documents
- type mkdir mahoutcode
- type cd mahoutcode
- type svn co http://svn.apache.org/repos/asf/mahout/trunk
- type cd trunk
- type mvn install
- type cd core
- type mvn compile (or mvn install)
Whew! I am just barely starting the journey… more to follow!