Skip to content

Commit 2d2652f

Browse files
committed
Update version for 1.8.0rc0
1 parent c222acd commit 2d2652f

File tree

6 files changed

+36
-31
lines changed

6 files changed

+36
-31
lines changed

install/install_c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ enable TensorFlow for C:
3838
OS="linux" # Change to "darwin" for macOS
3939
TARGET_DIRECTORY="/usr/local"
4040
curl -L \
41-
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-${OS}-x86_64-1.7.0.tar.gz" |
41+
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-${OS}-x86_64-1.8.0-rc0.tar.gz" |
4242
sudo tar -C $TARGET_DIRECTORY -xz
4343

4444
The `tar` command extracts the TensorFlow C library into the `lib`

install/install_go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ steps to install this library and enable TensorFlow for Go:
3838
TF_TYPE="cpu" # Change to "gpu" for GPU support
3939
TARGET_DIRECTORY='/usr/local'
4040
curl -L \
41-
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.7.0.tar.gz" |
41+
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.8.0-rc0.tar.gz" |
4242
sudo tar -C $TARGET_DIRECTORY -xz
4343

4444
The `tar` command extracts the TensorFlow C library into the `lib`

install/install_java.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ following to the project's `pom.xml` to use the TensorFlow Java APIs:
3636
<dependency>
3737
<groupId>org.tensorflow</groupId>
3838
<artifactId>tensorflow</artifactId>
39-
<version>1.7.0</version>
39+
<version>1.8.0-rc0</version>
4040
</dependency>
4141
```
4242

@@ -65,7 +65,7 @@ As an example, these steps will create a Maven project that uses TensorFlow:
6565
<dependency>
6666
<groupId>org.tensorflow</groupId>
6767
<artifactId>tensorflow</artifactId>
68-
<version>1.7.0</version>
68+
<version>1.8.0-rc0</version>
6969
</dependency>
7070
</dependencies>
7171
</project>
@@ -123,12 +123,12 @@ instead:
123123
<dependency>
124124
<groupId>org.tensorflow</groupId>
125125
<artifactId>libtensorflow</artifactId>
126-
<version>1.7.0</version>
126+
<version>1.8.0-rc0</version>
127127
</dependency>
128128
<dependency>
129129
<groupId>org.tensorflow</groupId>
130130
<artifactId>libtensorflow_jni_gpu</artifactId>
131-
<version>1.7.0</version>
131+
<version>1.8.0-rc0</version>
132132
</dependency>
133133
```
134134

@@ -147,7 +147,7 @@ refer to the simpler instructions above instead.
147147
Take the following steps to install TensorFlow for Java on Linux or macOS:
148148

149149
1. Download
150-
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.7.0.jar),
150+
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.8.0-rc0.jar),
151151
which is the TensorFlow Java Archive (JAR).
152152

153153
2. Decide whether you will run TensorFlow for Java on CPU(s) only or with
@@ -166,18 +166,18 @@ Take the following steps to install TensorFlow for Java on Linux or macOS:
166166
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
167167
mkdir -p ./jni
168168
curl -L \
169-
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-${TF_TYPE}-${OS}-x86_64-1.7.0.tar.gz" |
169+
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-${TF_TYPE}-${OS}-x86_64-1.8.0-rc0.tar.gz" |
170170
tar -xz -C ./jni
171171

172172
### Install on Windows
173173

174174
Take the following steps to install TensorFlow for Java on Windows:
175175

176176
1. Download
177-
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.7.0.jar),
177+
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.8.0-rc0.jar),
178178
which is the TensorFlow Java Archive (JAR).
179179
2. Download the following Java Native Interface (JNI) file appropriate for
180-
[TensorFlow for Java on Windows](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.7.0.zip).
180+
[TensorFlow for Java on Windows](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.8.0-rc0.zip).
181181
3. Extract this .zip file.
182182

183183

@@ -225,7 +225,7 @@ must be part of your `classpath`. For example, you can include the
225225
downloaded `.jar` in your `classpath` by using the `-cp` compilation flag
226226
as follows:
227227

228-
<pre><b>javac -cp libtensorflow-1.7.0.jar HelloTF.java</b></pre>
228+
<pre><b>javac -cp libtensorflow-1.8.0-rc0.jar HelloTF.java</b></pre>
229229

230230

231231
### Running
@@ -239,11 +239,11 @@ two files are available to the JVM:
239239
For example, the following command line executes the `HelloTF` program on Linux
240240
and macOS X:
241241

242-
<pre><b>java -cp libtensorflow-1.7.0.jar:. -Djava.library.path=./jni HelloTF</b></pre>
242+
<pre><b>java -cp libtensorflow-1.8.0-rc0.jar:. -Djava.library.path=./jni HelloTF</b></pre>
243243

244244
And the following command line executes the `HelloTF` program on Windows:
245245

246-
<pre><b>java -cp libtensorflow-1.7.0.jar;. -Djava.library.path=jni HelloTF</b></pre>
246+
<pre><b>java -cp libtensorflow-1.8.0-rc0.jar;. -Djava.library.path=jni HelloTF</b></pre>
247247

248248
If the program prints <tt>Hello from <i>version</i></tt>, you've successfully
249249
installed TensorFlow for Java and are ready to use the API. If the program

install/install_linux.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Take the following steps to install TensorFlow with Virtualenv:
194194
Virtualenv environment:
195195

196196
<pre>(tensorflow)$ <b>pip3 install --upgrade \
197-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp34-cp34m-linux_x86_64.whl</b></pre>
197+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0rc0-cp34-cp34m-linux_x86_64.whl</b></pre>
198198

199199
If you encounter installation problems, see
200200
[Common Installation Problems](#common_installation_problems).
@@ -299,7 +299,7 @@ take the following steps:
299299

300300
<pre>
301301
$ <b>sudo pip3 install --upgrade \
302-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp34-cp34m-linux_x86_64.whl</b>
302+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0rc0-cp34-cp34m-linux_x86_64.whl</b>
303303
</pre>
304304

305305
If this step fails, see
@@ -485,7 +485,7 @@ Take the following steps to install TensorFlow in an Anaconda environment:
485485

486486
<pre>
487487
(tensorflow)$ <b>pip install --ignore-installed --upgrade \
488-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp34-cp34m-linux_x86_64.whl</b></pre>
488+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0rc0-cp34-cp34m-linux_x86_64.whl</b></pre>
489489

490490
<a name="ValidateYourInstallation"></a>
491491
## Validate your installation
@@ -659,14 +659,14 @@ This section documents the relevant values for Linux installations.
659659
CPU only:
660660

661661
<pre>
662-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp27-none-linux_x86_64.whl
662+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0rc0-cp27-none-linux_x86_64.whl
663663
</pre>
664664

665665

666666
GPU support:
667667

668668
<pre>
669-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.0-cp27-none-linux_x86_64.whl
669+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.8.0rc0-cp27-none-linux_x86_64.whl
670670
</pre>
671671

672672
Note that GPU support requires the NVIDIA hardware and software described in
@@ -678,14 +678,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
678678
CPU only:
679679

680680
<pre>
681-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp34-cp34m-linux_x86_64.whl
681+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0rc0-cp34-cp34m-linux_x86_64.whl
682682
</pre>
683683

684684

685685
GPU support:
686686

687687
<pre>
688-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.0-cp34-cp34m-linux_x86_64.whl
688+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.8.0rc0-cp34-cp34m-linux_x86_64.whl
689689
</pre>
690690

691691
Note that GPU support requires the NVIDIA hardware and software described in
@@ -697,14 +697,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
697697
CPU only:
698698

699699
<pre>
700-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp35-cp35m-linux_x86_64.whl
700+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0rc0-cp35-cp35m-linux_x86_64.whl
701701
</pre>
702702

703703

704704
GPU support:
705705

706706
<pre>
707-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.0-cp35-cp35m-linux_x86_64.whl
707+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.8.0rc0-cp35-cp35m-linux_x86_64.whl
708708
</pre>
709709

710710

@@ -716,14 +716,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
716716
CPU only:
717717

718718
<pre>
719-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.7.0-cp36-cp36m-linux_x86_64.whl
719+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0rc0-cp36-cp36m-linux_x86_64.whl
720720
</pre>
721721

722722

723723
GPU support:
724724

725725
<pre>
726-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.7.0-cp36-cp36m-linux_x86_64.whl
726+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.8.0rc0-cp36-cp36m-linux_x86_64.whl
727727
</pre>
728728

729729

install/install_mac.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Take the following steps to install TensorFlow with Virtualenv:
119119
TensorFlow in the active Virtualenv is as follows:
120120

121121
<pre> $ <b>pip3 install --upgrade \
122-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.0-py3-none-any.whl</b></pre>
122+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0rc0-py3-none-any.whl</b></pre>
123123

124124
If you encounter installation problems, see
125125
[Common Installation Problems](#common-installation-problems).
@@ -242,7 +242,7 @@ take the following steps:
242242
issue the following command:
243243

244244
<pre> $ <b>sudo pip3 install --upgrade \
245-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.0-py3-none-any.whl</b> </pre>
245+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0rc0-py3-none-any.whl</b> </pre>
246246

247247
If the preceding command fails, see
248248
[installation problems](#common-installation-problems).
@@ -350,7 +350,7 @@ Take the following steps to install TensorFlow in an Anaconda environment:
350350
TensorFlow for Python 2.7:
351351

352352
<pre> (<i>targetDirectory</i>)$ <b>pip install --ignore-installed --upgrade \
353-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.0-py2-none-any.whl</b></pre>
353+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0rc0-py2-none-any.whl</b></pre>
354354

355355

356356
<a name="ValidateYourInstallation"></a>
@@ -524,13 +524,13 @@ The value you specify depends on your Python version.
524524

525525

526526
<pre>
527-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.0-py2-none-any.whl
527+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0rc0-py2-none-any.whl
528528
</pre>
529529

530530

531531
### Python 3.4, 3.5, or 3.6
532532

533533

534534
<pre>
535-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.7.0-py3-none-any.whl
535+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0rc0-py3-none-any.whl
536536
</pre>

install/install_sources.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,10 +350,10 @@ Invoke `pip install` to install that pip package.
350350
The filename of the `.whl` file depends on your platform.
351351
For example, the following command will install the pip package
352352

353-
for TensorFlow 1.7.0 on Linux:
353+
for TensorFlow 1.8.0rc0 on Linux:
354354

355355
<pre>
356-
$ <b>sudo pip install /tmp/tensorflow_pkg/tensorflow-1.7.0-py2-none-any.whl</b>
356+
$ <b>sudo pip install /tmp/tensorflow_pkg/tensorflow-1.8.0rc0-py2-none-any.whl</b>
357357
</pre>
358358

359359
## Validate your installation
@@ -450,6 +450,8 @@ Stack Overflow and specify the `tensorflow` tag.
450450
**Linux**
451451
<table>
452452
<tr><th>Version:</th><th>CPU/GPU:</th><th>Python Version:</th><th>Compiler:</th><th>Build Tools:</th><th>cuDNN:</th><th>CUDA:</th></tr>
453+
<tr><td>tensorflow-1.8.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.10.0</td><td>N/A</td><td>N/A</td></tr>
454+
<tr><td>tensorflow_gpu-1.8.0</td><td>GPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.9.0</td><td>7</td><td>9</td></tr>
453455
<tr><td>tensorflow-1.7.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.10.0</td><td>N/A</td><td>N/A</td></tr>
454456
<tr><td>tensorflow_gpu-1.7.0</td><td>GPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.9.0</td><td>7</td><td>9</td></tr>
455457
<tr><td>tensorflow-1.6.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.9.0</td><td>N/A</td><td>N/A</td></tr>
@@ -471,6 +473,7 @@ Stack Overflow and specify the `tensorflow` tag.
471473
**Mac**
472474
<table>
473475
<tr><th>Version:</th><th>CPU/GPU:</th><th>Python Version:</th><th>Compiler:</th><th>Build Tools:</th><th>cuDNN:</th><th>CUDA:</th></tr>
476+
<tr><td>tensorflow-1.8.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>Clang from xcode</td><td>Bazel 0.10.1</td><td>N/A</td><td>N/A</td></tr>
474477
<tr><td>tensorflow-1.7.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>Clang from xcode</td><td>Bazel 0.10.1</td><td>N/A</td><td>N/A</td></tr>
475478
<tr><td>tensorflow-1.6.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>Clang from xcode</td><td>Bazel 0.8.1</td><td>N/A</td><td>N/A</td></tr>
476479
<tr><td>tensorflow-1.5.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>Clang from xcode</td><td>Bazel 0.8.1</td><td>N/A</td><td>N/A</td></tr>
@@ -486,6 +489,8 @@ Stack Overflow and specify the `tensorflow` tag.
486489
**Windows**
487490
<table>
488491
<tr><th>Version:</th><th>CPU/GPU:</th><th>Python Version:</th><th>Compiler:</th><th>Build Tools:</th><th>cuDNN:</th><th>CUDA:</th></tr>
492+
<tr><td>tensorflow-1.8.0</td><td>CPU</td><td>3.5-3.6</td><td>MSVC 2015 update 3</td><td>Cmake v3.6.3</td><td>N/A</td><td>N/A</td></tr>
493+
<tr><td>tensorflow_gpu-1.8.0</td><td>GPU</td><td>3.5-3.6</td><td>MSVC 2015 update 3</td><td>Cmake v3.6.3</td><td>7</td><td>9</td></tr>
489494
<tr><td>tensorflow-1.7.0</td><td>CPU</td><td>3.5-3.6</td><td>MSVC 2015 update 3</td><td>Cmake v3.6.3</td><td>N/A</td><td>N/A</td></tr>
490495
<tr><td>tensorflow_gpu-1.7.0</td><td>GPU</td><td>3.5-3.6</td><td>MSVC 2015 update 3</td><td>Cmake v3.6.3</td><td>7</td><td>9</td></tr>
491496
<tr><td>tensorflow-1.6.0</td><td>CPU</td><td>3.5-3.6</td><td>MSVC 2015 update 3</td><td>Cmake v3.6.3</td><td>N/A</td><td>N/A</td></tr>

0 commit comments

Comments
 (0)