skip to Main Content

I need library for org.apache.commons.math3.stat.descriptive.DescriptiveStatistics
and that means I need org.apache.common libraries. Where can I find or download the libraries?

2

Answers


  1. take a look at this site: findjar.com.

    Login or Signup to reply.
  2. You can download binaries from the Apache Commons Math project:

    http://commons.apache.org/proper/commons-math/

    http://commons.apache.org/proper/commons-math/download_math.cgi

    Another way is to convert the project to Maven and add Maven dependency in pom.xml.

    Maven link:
    https://mvnrepository.com/artifact/org.apache.commons/commons-math3/3.0

    <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math3 -->
    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-math3</artifactId>
        <version>3.0</version>
    </dependency>
    

    Maven will find it for you in the repositories and download automatically.

    You can search for open-source libraries at https://mvnrepository.com. If you find the artifact there, you will have a link to the author website and license terms.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search