_content/doc: update local tour installation instructions

We already use go install for the installation instructions in the
tour itself, but the command shown in the root doc document still uses
go get, which by itself won't install any binary in recent Go
versions. Switch to go install there too.

Fixes golang/go#48347

Change-Id: Iad6b22010c92ff0f60df47804fabdd3a3ac2d5c2
Reviewed-on: https://go-review.googlesource.com/c/website/+/349529
Trust: Alberto Donizetti <alb.donizetti@gmail.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
diff --git a/_content/doc/index.html b/_content/doc/index.html
index 7daf45b..3dce8cd 100644
--- a/_content/doc/index.html
+++ b/_content/doc/index.html
@@ -73,10 +73,11 @@
 online</a> or{{end}} install it locally with:
 </p>
 <pre>
-$ go get golang.org/x/tour
+$ go install golang.org/x/website/tour@latest
 </pre>
 <p>
-This will place the <code>tour</code> binary in your workspace's <code>bin</code> directory.
+This will place the <code>tour</code> binary in your
+<a href="/cmd/go/#hdr-GOPATH_and_Modules">GOPATH</a>'s <code>bin</code> directory.
 </p>
 
 <h2 id="learning">Using and understanding Go</h2>