Skip to content

Commit

Permalink
docs: spell out go commands in case user doesn't have make
Browse files Browse the repository at this point in the history
  • Loading branch information
Roasbeef committed May 3, 2018
1 parent 5f059e7 commit dd60e9e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit dd60e9e

Please sign in to comment.