From dd60e9e7204000f91d777cab0e52d70d285dcd12 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 3 May 2018 16:27:09 -0700 Subject: [PATCH] docs: spell out go commands in case user doesn't have make Fixes #1171. --- docs/INSTALL.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index b670d06c..bd39a440 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -64,6 +64,13 @@ cd $GOPATH/src/github.com/lightningnetwork/lnd make && make install ``` +Alternatively, if one doesn't wish to use `make`, then the `go` commands can be +used directly: +``` +dep ensure -v +go install -v +``` + **Updating** To update your version of `lnd` to the latest version run the following @@ -74,6 +81,15 @@ git pull make && make install ``` +Alternatively, if one doesn't wish to use `make`, then the `go` commands can be +used directly: +``` +cd $GOPATH/src/github.com/lightningnetwork/lnd +git pull +dep ensure -v +go install -v +``` + **Tests** To check that `lnd` was installed properly run the following command: