From c2e0e94aa55ca223ed16fcc7d97f8a27ee6c3091 Mon Sep 17 00:00:00 2001 From: Gerard Braad Date: Tue, 7 Nov 2023 10:43:41 +0800 Subject: [PATCH] Update Windows install --- Documentation/installation/windows/install.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Documentation/installation/windows/install.md b/Documentation/installation/windows/install.md index 30baabce68..a875e7f058 100644 --- a/Documentation/installation/windows/install.md +++ b/Documentation/installation/windows/install.md @@ -1,11 +1,9 @@ # Installation on Windows -Please use the standard `go get` command to build and install Delve on Windows. +Please use the standard `go install` command to build and install Delve on Windows. ``` -go get github.com/go-delve/delve/cmd/dlv +go install github.com/go-delve/delve/cmd/dlv@latest ``` -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.