Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2195f43

Browse files
authored
update os_setup for r0.10 (tensorflow#3573)
1 parent 0b70bd8 commit 2195f43

1 file changed

Lines changed: 42 additions & 24 deletions

File tree

tensorflow/g3doc/get_started/os_setup.md

Lines changed: 42 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -61,31 +61,37 @@ Then, select the correct binary to install:
6161

6262
```bash
6363
# Ubuntu/Linux 64-bit, CPU only, Python 2.7
64-
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
64+
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.10.0rc0-cp27-none-linux_x86_64.whl
6565

6666
# Ubuntu/Linux 64-bit, GPU enabled, Python 2.7
6767
# Requires CUDA toolkit 7.5 and CuDNN v4. For other versions, see "Install from sources" below.
68-
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
68+
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.10.0rc0-cp27-none-linux_x86_64.whl
6969

7070
# Mac OS X, CPU only, Python 2.7:
71-
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/tensorflow-0.9.0-py2-none-any.whl
71+
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.10.0rc0-py2-none-any.whl
72+
73+
# Mac OS X, GPU enabled, Python 2.7:
74+
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/gpu/tensorflow-0.10.0rc0-py2-none-any.whl
7275

7376
# Ubuntu/Linux 64-bit, CPU only, Python 3.4
74-
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp34-cp34m-linux_x86_64.whl
77+
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.10.0rc0-cp34-cp34m-linux_x86_64.whl
7578

7679
# Ubuntu/Linux 64-bit, GPU enabled, Python 3.4
7780
# Requires CUDA toolkit 7.5 and CuDNN v4. For other versions, see "Install from sources" below.
78-
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.9.0-cp34-cp34m-linux_x86_64.whl
81+
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.10.0rc0-cp34-cp34m-linux_x86_64.whl
7982

8083
# Ubuntu/Linux 64-bit, CPU only, Python 3.5
81-
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp35-cp35m-linux_x86_64.whl
84+
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.10.0rc0-cp35-cp35m-linux_x86_64.whl
8285

8386
# Ubuntu/Linux 64-bit, GPU enabled, Python 3.5
8487
# Requires CUDA toolkit 7.5 and CuDNN v4. For other versions, see "Install from sources" below.
85-
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.9.0-cp35-cp35m-linux_x86_64.whl
88+
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.10.0rc0-cp35-cp35m-linux_x86_64.whl
8689

8790
# Mac OS X, CPU only, Python 3.4 or 3.5:
88-
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/tensorflow-0.9.0-py3-none-any.whl
91+
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.10.0rc0-py3-none-any.whl
92+
93+
# Mac OS X, GPU enabled, Python 3.4 or 3.5:
94+
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/gpu/tensorflow-0.10.0rc0-py3-none-any.whl
8995
```
9096

9197
Install TensorFlow:
@@ -151,31 +157,37 @@ Now, install TensorFlow just as you would for a regular Pip installation. First
151157

152158
```bash
153159
# Ubuntu/Linux 64-bit, CPU only, Python 2.7
154-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
160+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.10.0rc0-cp27-none-linux_x86_64.whl
155161

156162
# Ubuntu/Linux 64-bit, GPU enabled, Python 2.7
157163
# Requires CUDA toolkit 7.5 and CuDNN v4. For other versions, see "Install from sources" below.
158-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
164+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.10.0rc0-cp27-none-linux_x86_64.whl
159165

160166
# Mac OS X, CPU only, Python 2.7:
161-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/tensorflow-0.9.0-py2-none-any.whl
167+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.10.0rc0-py2-none-any.whl
168+
169+
# Mac OS X, GPU enabled, Python 2.7:
170+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/gpu/tensorflow-0.10.0rc0-py2-none-any.whl
162171

163172
# Ubuntu/Linux 64-bit, CPU only, Python 3.4
164-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp34-cp34m-linux_x86_64.whl
173+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.10.0rc0-cp34-cp34m-linux_x86_64.whl
165174

166175
# Ubuntu/Linux 64-bit, GPU enabled, Python 3.4
167176
# Requires CUDA toolkit 7.5 and CuDNN v4. For other versions, see "Install from sources" below.
168-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.9.0-cp34-cp34m-linux_x86_64.whl
177+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.10.0rc0-cp34-cp34m-linux_x86_64.whl
169178

170179
# Ubuntu/Linux 64-bit, CPU only, Python 3.5
171-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp35-cp35m-linux_x86_64.whl
180+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.10.0rc0-cp35-cp35m-linux_x86_64.whl
172181

173182
# Ubuntu/Linux 64-bit, GPU enabled, Python 3.5
174183
# Requires CUDA toolkit 7.5 and CuDNN v4. For other versions, see "Install from sources" below.
175-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.9.0-cp35-cp35m-linux_x86_64.whl
184+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.10.0rc0-cp35-cp35m-linux_x86_64.whl
176185

177186
# Mac OS X, CPU only, Python 3.4 or 3.5:
178-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/tensorflow-0.9.0-py3-none-any.whl
187+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.10.0rc0-py3-none-any.whl
188+
189+
# Mac OS X, GPU enabled, Python 3.4 or 3.5:
190+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/gpu/tensorflow-0.10.0rc0-py3-none-any.whl
179191
```
180192

181193
Finally install TensorFlow:
@@ -275,31 +287,37 @@ Now, install TensorFlow just as you would for a regular Pip installation. First
275287

276288
```bash
277289
# Ubuntu/Linux 64-bit, CPU only, Python 2.7
278-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
290+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.10.0rc0-cp27-none-linux_x86_64.whl
279291

280292
# Ubuntu/Linux 64-bit, GPU enabled, Python 2.7
281293
# Requires CUDA toolkit 7.5 and CuDNN v4. For other versions, see "Install from sources" below.
282-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
294+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.10.0rc0-cp27-none-linux_x86_64.whl
283295

284296
# Mac OS X, CPU only, Python 2.7:
285-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/tensorflow-0.9.0-py2-none-any.whl
297+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.10.0rc0-py2-none-any.whl
298+
299+
# Mac OS X, GPU enabled, Python 2.7:
300+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/gpu/tensorflow-0.10.0rc0-py2-none-any.whl
286301

287302
# Ubuntu/Linux 64-bit, CPU only, Python 3.4
288-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp34-cp34m-linux_x86_64.whl
303+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.10.0rc0-cp34-cp34m-linux_x86_64.whl
289304

290305
# Ubuntu/Linux 64-bit, GPU enabled, Python 3.4
291306
# Requires CUDA toolkit 7.5 and CuDNN v4. For other versions, see "Install from sources" below.
292-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.9.0-cp34-cp34m-linux_x86_64.whl
307+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.10.0rc0-cp34-cp34m-linux_x86_64.whl
293308

294309
# Ubuntu/Linux 64-bit, CPU only, Python 3.5
295-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp35-cp35m-linux_x86_64.whl
310+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.10.0rc0-cp35-cp35m-linux_x86_64.whl
296311

297312
# Ubuntu/Linux 64-bit, GPU enabled, Python 3.5
298313
# Requires CUDA toolkit 7.5 and CuDNN v4. For other versions, see "Install from sources" below.
299-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.9.0-cp35-cp35m-linux_x86_64.whl
314+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.10.0rc0-cp35-cp35m-linux_x86_64.whl
300315

301316
# Mac OS X, CPU only, Python 3.4 or 3.5:
302-
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/tensorflow-0.9.0-py3-none-any.whl
317+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.10.0rc0-py3-none-any.whl
318+
319+
# Mac OS X, GPU enabled, Python 3.4 or 3.5:
320+
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/gpu/tensorflow-0.10.0rc0-py3-none-any.whl
303321
```
304322

305323
Finally install TensorFlow:

0 commit comments

Comments
 (0)