@@ -53,28 +53,28 @@ Install TensorFlow:
53
53
54
54
``` bash
55
55
# Ubuntu/Linux 64-bit, CPU only:
56
- $ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.0 -py2-none-linux_x86_64.whl
56
+ $ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1 -py2-none-linux_x86_64.whl
57
57
58
58
# Ubuntu/Linux 64-bit, GPU enabled:
59
- $ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.0 -py2-none-linux_x86_64.whl
59
+ $ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1 -py2-none-linux_x86_64.whl
60
60
61
61
# Mac OS X, CPU only:
62
62
$ sudo easy_install --upgrade six
63
- $ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.0 -py2-none-any.whl
63
+ $ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1 -py2-none-any.whl
64
64
```
65
65
66
66
For python3:
67
67
68
68
``` bash
69
69
# Ubuntu/Linux 64-bit, CPU only:
70
- $ sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.0 -py3-none-linux_x86_64.whl
70
+ $ sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1 -py3-none-linux_x86_64.whl
71
71
72
72
# Ubuntu/Linux 64-bit, GPU enabled:
73
- $ sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.0 -py3-none-linux_x86_64.whl
73
+ $ sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1 -py3-none-linux_x86_64.whl
74
74
75
75
# Mac OS X, CPU only:
76
76
$ sudo easy_install --upgrade six
77
- $ sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.0 -py3-none-any.whl
77
+ $ sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1 -py3-none-any.whl
78
78
```
79
79
80
80
@@ -121,13 +121,13 @@ $ source ~/tensorflow/bin/activate.csh # If using csh
121
121
(tensorflow)$ # Your prompt should change
122
122
123
123
# Ubuntu/Linux 64-bit, CPU only:
124
- (tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.0 -py2-none-linux_x86_64.whl
124
+ (tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1 -py2-none-linux_x86_64.whl
125
125
126
126
# Ubuntu/Linux 64-bit, GPU enabled:
127
- (tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.0 -py2-none-linux_x86_64.whl
127
+ (tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1 -py2-none-linux_x86_64.whl
128
128
129
129
# Mac OS X, CPU only:
130
- (tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.0 -py2-none-any.whl
130
+ (tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1 -py2-none-any.whl
131
131
```
132
132
133
133
and again for python3:
@@ -138,13 +138,13 @@ $ source ~/tensorflow/bin/activate.csh # If using csh
138
138
(tensorflow)$ # Your prompt should change
139
139
140
140
# Ubuntu/Linux 64-bit, CPU only:
141
- (tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.0 -py3-none-linux_x86_64.whl
141
+ (tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1 -py3-none-linux_x86_64.whl
142
142
143
143
# Ubuntu/Linux 64-bit, GPU enabled:
144
- (tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.0 -py3-none-linux_x86_64.whl
144
+ (tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1 -py3-none-linux_x86_64.whl
145
145
146
146
# Mac OS X, CPU only:
147
- (tensorflow)$ pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.0 -py3-none-any.whl
147
+ (tensorflow)$ pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1 -py3-none-any.whl
148
148
```
149
149
150
150
With the Virtualenv environment activated, you can now
@@ -186,7 +186,7 @@ code.
186
186
* ` b.gcr.io/tensorflow/tensorflow:latest-devel-gpu ` : GPU Binary image plus source
187
187
code.
188
188
189
- We also have tags with ` latest ` replaced by a released version (e.g., ` 0.7.0 -gpu ` ).
189
+ We also have tags with ` latest ` replaced by a released version (e.g., ` 0.7.1 -gpu ` ).
190
190
191
191
With Docker the installation is as follows:
192
192
@@ -512,7 +512,7 @@ $ bazel build -c opt --config=cuda //tensorflow/tools/pip_package:build_pip_pack
512
512
$ bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg
513
513
514
514
# The name of the .whl file will depend on your platform.
515
- $ pip install /tmp/tensorflow_pkg/tensorflow-0.7.0 -py2-none-linux_x86_64.whl
515
+ $ pip install /tmp/tensorflow_pkg/tensorflow-0.7.1 -py2-none-linux_x86_64.whl
516
516
```
517
517
518
518
## Setting up TensorFlow for Development
0 commit comments