Skip to content

Install

Razvan Musaloiu-E edited this page Jul 18, 2016 · 1 revision

Vanadium Core requires a Go workspace. An empty one can be created like this:

mkdir /tmp/work
export GOPATH=/tmp/work
cd $GOPATH

To install Vanadium Core run the following command from the root of the $GOPATH:

git clone https://github.com/vanadium/core.git src/v.io
go get -t v.io/...

How to run all the unit tests:

VDLPATH=$PWD/src go test v.io/...
Clone this wiki locally