From 77559d50a81b433f89391a67421f4b6a8d833dde Mon Sep 17 00:00:00 2001 From: "Randall C. O'Reilly" Date: Wed, 4 Jan 2023 12:44:35 -0800 Subject: [PATCH] update go get -> go install in readme - fixes #305 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 322b40f..696f2f8 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,8 @@ Currently using [pybindgen](https://pybindgen.readthedocs.io/en/latest/tutorial/ ```sh $ python3 -m pip install pybindgen -$ go get golang.org/x/tools/cmd/goimports -$ go get github.com/go-python/gopy +$ go install golang.org/x/tools/cmd/goimports@latest +$ go install github.com/go-python/gopy@latest ``` (This all assumes you have already installed [Go itself](https://golang.org/doc/install), and added `~/go/bin` to your `PATH`).