--- layout: global title: Downloads type: singular navigation: weight: 3 show: true --- ## Download Spark The latest release of Spark is Spark 1.3.1, released on April 17, 2015 (release notes) (git tag)
1. Choose a Spark release:
2. Choose a package type:
3. Choose a download type:
4. Download Spark: 5. Verify this release using the . _Note: Scala 2.11 users should download the Spark source package and build [with Scala 2.11 support](http://spark.apache.org/docs/latest/building-spark.html#building-for-scala-211)._ ### Link with Spark Spark artifacts are [hosted in Maven Central](http://search.maven.org/#browse%7C1686516968). You can add a Maven dependency with the following coordinates: groupId: org.apache.spark artifactId: spark-core_2.10 version: 1.3.1 ### Nightly Packages and Artifacts Packages are built regularly off of Spark's master branch and release branches. These provide access to the bleeding-edge of Spark master or the most recent fixes not yet incorporated into a maintenance release. Spark nightly packages are available at: # Latest master build http://people.apache.org/~pwendell/spark-nightly/spark-master-bin/latest # All nightly builds http://people.apache.org/~pwendell/spark-nightly/ Spark also publishes SNAPSHOT releases of its Maven artifacts for both master and maintenance branches on a nightly basis. To link to a SNAPSHOT you need to add the ASF snapshot repository to your build. Note that SNAPSHOT artifacts are ephemeral and may change or be removed. # To use these you must add the ASF snapshot repository # at http://repository.apache.org/snapshots/ groupId: org.apache.spark artifactId: spark-core_2.10 version: 1.3.2-SNAPSHOT ### Spark Source Code Management If you are interested in working with the newest under-development code or contributing to Spark development, you can also check out the master branch from Git: # Master development branch git clone git://github.com/apache/spark.git # 1.3 maintenance branch with stability fixes on top of Spark 1.3.1 git clone git://github.com/apache/spark.git -b branch-1.3 Once you've downloaded Spark, you can find instructions for installing and building it on the documentation page.

All Releases