Update readme.md

`go install` command won't download source, it works only if source already dowloaded into GOPATH. For the installation, we should use `go get` command - it will download sources first and then run `go install`.
This commit is contained in:
Ivan Daniluk 2017-05-15 15:06:36 +02:00 committed by GitHub
parent 75e4e53b5f
commit 337e95201a
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ can also be used to implement any completions, see [Usage](#usage).
1. Type in your shell:
```
go install github.com/posener/complete/gocomplete
go get github.com/posener/complete/gocomplete
gocomplete -install
```