Corresponds to Mahout successfully on Windows using Maven.
I am trying to run one of the examples from the command line and I do not understand what I am doing wrong. Looks like a CLASSPATH problem.
Let's say I want to run the GroupLensRecommenderEvaluatorRunner example. I go to the folder with the GroupLensRecommenderEvaluatorRunner.class file and execute:
java -cp C:/mahout/core/target/classes;.
org.apache.mahout.cf.taste.example.grouplens.GroupLensRecommenderEvaluatorRunner
This gives me a NoClassDefFoundError exception for the GroupLensRecommenderEvaluatorRunner class.
Is the path for -cp wrong?
btw, for those who are not familiar with mahout,
org.apache.mahout.cf.taste.example.grouplens
is a package of the class GroupLensRecommenderEvaluatorRunner.
javadoc
Thanks guys.
ps - First I looked at the previous stack questions on CLASSPATH and followed these decisions before asking this question.