You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/external/getting-started/test-network/setup-local-docker.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,8 +35,8 @@ Before starting, make sure you have the following software installed on your hos
35
35
* Default method: Run the following with `sudo` if necessary. This will install both the protobuf compiler and the Go code generator plugins.
36
36
```
37
37
apt-get install protobuf-compiler
38
-
go install google.golang.org/protobuf/cmd/protoc-gen-go
39
-
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc
38
+
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
39
+
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
40
40
```
41
41
* If the above method installs an older version of `protoc` (check using `protoc --version`), say below 3.12.x, you should download pre-compiled binaries instead. (With an older version, you may see errors while attempting to launch and setup the Fabric networks).
42
42
```
@@ -45,8 +45,8 @@ Before starting, make sure you have the following software installed on your hos
go install google.golang.org/protobuf/cmd/protoc-gen-go
49
-
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc
48
+
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
49
+
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
50
50
```
51
51
52
52
| Notes |
@@ -162,7 +162,7 @@ For more information, refer to the associated [README](https://github.com/hyperl
162
162
163
163
**Troubleshooting Tips**:
164
164
- If you see any errors during the launches, re-check the prerequisites (software installations and credentials). Ensure your network connection is working. As a safe bet, you can retry after cleanup: kill and remove all Docker containers and associated volumes.
165
-
- If `protoc` or `protoc-gen-go` throws an error, reinstall `protoc`and `protoc-gen-go` using suggestions made in the Prerequisites section above.
165
+
- If `protoc` or `protoc-gen-go` throws an error, reinstall `protoc`, `protoc-gen-go`, and `protoc-gen-go-grpc` using suggestions made in the Prerequisites section above.
Copy file name to clipboardExpand all lines: docs/docs/external/getting-started/test-network/setup-local.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,8 +37,8 @@ Before starting, make sure you have the following software installed on your hos
37
37
* Default method: Run the following with `sudo` if necessary. This will install both the protobuf compiler and the Go code generator plugins.
38
38
```
39
39
apt-get install protobuf-compiler
40
-
go install google.golang.org/protobuf/cmd/protoc-gen-go
41
-
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc
40
+
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
41
+
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
42
42
```
43
43
* If the above method installs an older version of `protoc` (check using `protoc --version`), say below 3.12.x, you should download pre-compiled binaries instead. (With an older version, you may see errors while attempting to launch and setup the Fabric networks).
44
44
```
@@ -47,8 +47,8 @@ Before starting, make sure you have the following software installed on your hos
go install google.golang.org/protobuf/cmd/protoc-gen-go
51
-
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc
50
+
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
51
+
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
52
52
```
53
53
54
54
| Notes |
@@ -164,7 +164,7 @@ For more information, refer to the associated [README](https://github.com/hyperl
164
164
165
165
**Troubleshooting Tips**:
166
166
- If you see any errors during the launches, re-check the prerequisites (software installations and credentials). Ensure your network connection is working. As a safe bet, you can retry after cleanup: kill and remove all Docker containers and associated volumes.
167
-
- If `protoc` or `protoc-gen-go` throws an error, reinstall `protoc`and `protoc-gen-go` using suggestions made in the Prerequisites section above.
167
+
- If `protoc` or `protoc-gen-go` throws an error, reinstall `protoc`, `protoc-gen-go`, and `protoc-gen-go-grpc` using suggestions made in the Prerequisites section above.
0 commit comments