Download

Hadoop 1.2.X Hadoop 2 (YARN)
Binary Download

How to install?

Download

How to install?

Maven Dependencies

adding stratosphere to your own maven project
<project>
  ...
  <dependencies>
    <dependency>
      <groupId>eu.stratosphere</groupId>
      <artifactId>stratosphere</artifactId>
      <version>0.4-SNAPSHOT</version>
      <type>pom</version>
    </dependency>
  </dependencies>
</project>
<project>
  ...
  <dependencies>
    <dependency>
      <groupId>eu.stratosphere</groupId>
      <artifactId>stratosphere</artifactId>
      <version>0.4-hadoop2-SNAPSHOT</version>
      <type>pom</version>
    </dependency>
  </dependencies>
</project>
Quickstart Java:
curl https://raw.github.com/stratosphere/stratosphere-quickstart/master/quickstart.sh | bash
Scala:
curl https://raw.github.com/stratosphere/stratosphere-quickstart/master/quickstart-scala.sh | bash

For more information see Quickstart

Virtual Machine Download

Download the files and import to VirtualBox

Vagrant Download

Copy Vagrant file to own directory, open shell and type:

vagrant up
vagrant ssh

Source

Compile stratosphere on your own machine.
git clone https://github.com/stratosphere/stratosphere.git
cd stratosphere
mvn clean package -DskipTests
git clone https://github.com/stratosphere/stratosphere.git
cd stratosphere
mvn clean package -DskipTests -Dhadoop.profile=2