docs: spell out go commands in case user doesn't have make

Fixes #1171.
This commit is contained in:
Olaoluwa Osuntokun 2018-05-03 16:27:09 -07:00
parent 5f059e74cb
commit dd60e9e720
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

View File

@ -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: