Have you tried changing the hadoop version in pom.xml?
<groupId>org.apache.hadoop</groupId> <artifactId>hadoop-core</artifactId> <version> 0.23.9</version>
(Please check hadoop version. As I understand it, 0.23 became 2.0)
Another thing to try is to run the Recommender as follows:
bin/mahout recommenditembased \
To accomplish this, you must be at the root of your mahout folder, and you need to set the following environment variables:
export HADOOP_HOME=/path/to/hadoop/home export HADOOP_COMMONS_HOME=/path/to/commons/home export JAVA_HOME=/path/to/java/home export PATH="$PATH:$HADOOP_HOME/bin"
source share