通过 Maven 将 Encog3.3 库导入 Eclipse
Importing Encog3.3 library to Eclipse via Maven
尝试使用 Encog3.3 库进行机器学习,但无法将其导入 Eclipse。
快速入门指南说:
You might also be able to instruct your IDE to pull the Encog JAR from
Maven central:
http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22encog-core%22
我该怎么做?有谁知道更简单的方法吗?
谢谢
将以下依赖项添加到您的 pom.xml
<dependency>
<groupId>org.encog</groupId>
<artifactId>encog-core</artifactId>
<version>3.3.0</version>
</dependency>
这会将 Encog3.3
库添加到您的项目中。
尝试使用 Encog3.3 库进行机器学习,但无法将其导入 Eclipse。
快速入门指南说:
You might also be able to instruct your IDE to pull the Encog JAR from Maven central: http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22encog-core%22
我该怎么做?有谁知道更简单的方法吗?
谢谢
将以下依赖项添加到您的 pom.xml
<dependency>
<groupId>org.encog</groupId>
<artifactId>encog-core</artifactId>
<version>3.3.0</version>
</dependency>
这会将 Encog3.3
库添加到您的项目中。