Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This page describes how to get ONOS. In order to download the binaries, the VMs or to checkout the code you don't need to register any ONOS account. Table of ContentsmaxLevel3

ONOS Binaries and VMs

The ONOS binaries, as well as VMs pre-installed with ONOS are available from Downloads

ONOS Source Code

The ONOS source code may be downloaded using git. git is available via various package managers.

Checking out code

The latest ONOS source can then be checked out using git:

Code Block
languagetext
$ git clone https://gerrit.onosproject.org/onos

This clones the repository to your home directory, under a directory named onos.

In order to checkout the stable version of ONOS, do the following once you cloned the repository:

Code Block
languagetext
$ cd onos
$ git checkout 1.1.0

Maven Artifacts

The artifacts have been pushed to Maven Central Repository

You can directly add artifacts to your pom.xml file. Here is an example of how to pull in the onos api:

Code Block
<dependency>
    <groupId>org.onosproject</groupId>
    <artifactId>onos-api</artifactId>
    <version>1.1.0</version>
</dependency>

 

 

...

Previous : Welcome to ONOS !
Next : Installing and Running ONOS

...