@@ -36,7 +36,7 @@ library is required for use of the TensorFlow Go package at runtime. For example
36
36
on Linux (64-bit, x86):
37
37
38
38
``` sh
39
- $ curl -L https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-2.7 .0.tar.gz | tar xz --directory /usr/local
39
+ $ curl -L https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-2.8 .0.tar.gz | tar xz --directory /usr/local
40
40
$ ldconfig
41
41
```
42
42
@@ -74,7 +74,7 @@ Instead, follow these instructions.***
74
74
workspace for ` /go ` in the command below.
75
75
76
76
``` sh
77
- $ git clone --branch v2.7 .0 https://github.com/tensorflow/tensorflow.git /go/src/github.com/tensorflow/tensorflow
77
+ $ git clone --branch v2.8 .0 https://github.com/tensorflow/tensorflow.git /go/src/github.com/tensorflow/tensorflow
78
78
```
79
79
80
80
- Change the working directory to the base of the cloned TensorFlow repository,
@@ -85,10 +85,10 @@ Instead, follow these instructions.***
85
85
$ cd /go/src/github.com/tensorflow/tensorflow
86
86
```
87
87
88
- - Apply a set of required patches to the TensorFlow source code.
88
+ - Apply a required patch to the TensorFlow source code.
89
89
90
90
``` sh
91
- $ git cherry-pick --strategy-option=no-renames --no-commit 41bfbe8 74bf9d1 a33fba8 aa700a8 b451698 f6a59d6
91
+ $ git cherry-pick --strategy-option=no-renames --no-commit 65a5434
92
92
```
93
93
94
94
- Initialize a new go.mod file.
@@ -127,7 +127,7 @@ workspace for `/go` in the command below:
127
127
128
128
``` sh
129
129
$ go mod init hello-world
130
- $ go mod edit -require github.com/tensorflow/tensorflow@v2.7 .0+incompatible
130
+ $ go mod edit -require github.com/tensorflow/tensorflow@v2.8 .0+incompatible
131
131
$ go mod edit -replace github.com/tensorflow/tensorflow=/go/src/github.com/tensorflow/tensorflow
132
132
$ go mod tidy
133
133
```
@@ -173,7 +173,7 @@ func main() {
173
173
174
174
``` sh
175
175
$ go mod init app
176
- $ go mod edit -require github.com/tensorflow/tensorflow@v2.7 .0+incompatible
176
+ $ go mod edit -require github.com/tensorflow/tensorflow@v2.8 .0+incompatible
177
177
$ go mod edit -replace github.com/tensorflow/tensorflow=/go/src/github.com/tensorflow/tensorflow
178
178
$ go mod tidy
179
179
```
0 commit comments