Skip to content

Dev Setup Guide (Linux)

kstola2 edited this page Jul 29, 2019 · 12 revisions

The purpose of this page is to instruct new developers on how to get started working on Project Aurum on a Windows machine.

Go

Installing Go

Follow these instructions

Verify installation by running go env and go version.

Git

Installing Git

Run the following commands:

sudo apt-get update

sudo apt-get install git

That's all for git.

VSCode

Installing VSCode

Follow these instructions.

Aurum

Getting the repository

In your terminal run:

go get github.com/SIGBlockchain/project_aurum/...

If you're encountering libc problems, run the following:

sudo apt-get update sudo apt-get install build-essential

Then try again.

Run go env. This should show your GOPATH. Navigate to GOPATH/src/github.com and verify you have the SIGBlockchain repository.

You're all done!

Clone this wiki locally