-
-
Notifications
You must be signed in to change notification settings - Fork 605
Capstan Installation
David M. Carr edited this page Apr 18, 2014
·
5 revisions
On Mac OS
- Install required packages
$ brew install go qemu git
- Setup environment variable
$ echo 'export GOPATH=$HOME/go' >> $HOME/.profile
$ echo 'export PATH=$PATH:$GOPATH/bin' >> $HOME/.profile
$ source $HOME/.profile
- Install capstan
$ go get github.com/cloudius-systems/capstan
On Linux
- Install required packages
$ wget http://go.googlecode.com/files/go1.2.1.linux-amd64.tar.gz
$ sudo tar -C /usr/local -xzf go1.2.1.linux-amd64.tar.gz
$ sudo yum install qemu-system-x86 git
Note: More go packages can be found here:
- Setup environment variable
$ echo 'export GOPATH=$HOME/go' >> $HOME/.profile
$ echo 'export PATH=$PATH:$GOPATH/bin:/usr/local/go/bin' >> $HOME/.profile
$ source $HOME/.profile
- Install capstan
$ go get github.com/cloudius-systems/capstan