
1. Adds a note to the documentation describing how to use 'go get' in modules mode 2. Removes the '-u' option which, when 'go get' is used incorrectly will make 'go' try to compile Delve with unsupported dependencies 3. Removed obsolete note about Go 1.5 vendor experiment. Fixes #1988
12 lines
409 B
Markdown
12 lines
409 B
Markdown
# Installation on Windows
|
|
|
|
Please use the standard `go get` command to build and install Delve on Windows.
|
|
|
|
```
|
|
go get github.com/go-delve/delve/cmd/dlv
|
|
```
|
|
|
|
Note: if you are using Go in modules mode you must execute this command outside of a module directory or Delve will be added to your project as a dependency.
|
|
|
|
Also, if not already set, you have to add the %GOPATH%\bin directory to your PATH variable.
|