-
Notifications
You must be signed in to change notification settings - Fork 0
Dev Setup Guide (Linux)
The purpose of this page is to instruct new developers on how to get started working on Project Aurum on a Windows machine.
Open a terminal and run:
wget https://storage.googleapis.com/golang/getgo/installer_linux
Navigate to the folder containing installer_linux. It should be in the same folder you ran the previous command or the Downloads folder. Then make it an executable by running:
chmod +x ./installer_linux
Finally, run the executable:
./installer_linux
To navigate to your go directory, run cd ~/.go. You can always check to see if it's in your current directory by running l -a.
Run the following commands:
sudo apt-get update
sudo apt-get install git
That's all for git.
Follow these instructions.
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!