将Apache Mahout导入eclipse

时间:2017-05-18 14:00:01

标签: java eclipse maven

我试图在Mac上将Mahout导入eclipse。我使用:

安装了Apache Mahout
$wget -c http://archive.apache.org/dist/mahout/0.9/mahout-distribution-0.9.tar.gz
$tar zxf mahout-distribution-0.9.tar.gz 
$cd mahout-distribution-0.9
$mvn eclipse:eclipse

当我运行最后一部分时,我收到错误:

Goal requires a project to execute but there is no POM in this directory 

我需要在此POM文件中输入哪些信息?

1 个答案:

答案 0 :(得分:0)

您已下载mahout-distribution-0.9.tar.gz,其中包含旨在提取到现有项目中的.jars。由于它包含打包的.jars,因此不需要pom.xml。这不同于包含Mahout项目源代码的*-src下载,以及用于从源代码构建项目的pom.xml。

我很确定你不打算从源代码构建,所以你需要一个现有的项目,然后将Mahout .jars引入该项目。如果在Eclipse中创建Maven项目,则可以使用pom.xml引入必要的Mahout dependencies,而无需直接下载它们。