Installation Instructions for Windows - usechain/doc GitHub Wiki
Prepare
Install chocoloatey
Install used with tools from chocolatey
Open an Administrator command prompt and install the build tools we need:
C:\Windows\system32> choco install git
C:\Windows\system32> choco install golang
C:\Windows\system32> choco install mingw
Install latest distribution of Go if you don't have it already.
Building from source
Building Used (command line client)
Clone the repository to a directory of your choosing:
D:\> mkdir %GOPATH%\src\github.com\usechain
D:\> git clone https://github.com/usechain/go-usechain.git %GOPATH%\src\github.com\usechain
Finally, build the used program using the following command
D:\> cd %GOPATH%\src\github.com\usechain\go-usechain
D:\> go get -u -v golang.org/x/net/context
D:\> go install -v ./cmd/used
You can now run %GOPATH%\bin\used to start your node.