Skip to content

Commit 8646905

Browse files
committed
TensorFlow v0.8.0 full release
1 parent 82c022d commit 8646905

4 files changed

+6
-6
lines changed

GUIDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ After that, copy the two Protobuf files mentioned earlier into the Bazel project
114114

115115
```shell
116116
sudo cp /usr/bin/protoc third_party/protobuf/protoc-linux-arm32.exe
117-
sudo cp ../protobuf/java/core/target/protobuf-java-3.0.0-beta-2.jar third_party/protobuf/protobuf-java-3.0.0-beta-1.jar
117+
sudo cp ../protobuf/java/target/protobuf-java-3.0.0-beta-2.jar third_party/protobuf/protobuf-java-3.0.0-beta-1.jar
118118
```
119119

120120
Before building Bazel, we need to set the `javac` maximum heap size for this job, or else we'll get an OutOfMemoryError. To do this, we need to make a small addition to `bazel/scripts/bootstrap/compile.sh`. (Shout-out to @SangManLINUX for [pointing this out.](https://github.com/samjabrahams/tensorflow-on-raspberry-pi/issues/5#issuecomment-210965695).
@@ -298,7 +298,7 @@ bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg
298298
And then install it!
299299

300300
```shell
301-
sudo pip install /tmp/tensorflow_pkg/tensorflow-0.8.0rc0-cp27-none-linux_armv7l.whl
301+
sudo pip install /tmp/tensorflow_pkg/tensorflow-0.8.0-cp27-none-linux_armv7l.whl
302302
```
303303

304304
### 6. Cleaning Up

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ sudo apt-get install python-pip python-dev
2626
Next, download the wheel file from this repository and install it:
2727

2828
```shell
29-
wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.8.0rc0-cp27-none-linux_armv7l.whl
29+
wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.8.0-cp27-none-linux_armv7l.whl
3030

31-
sudo pip install tensorflow-0.8.0rc0-cp27-none-linux_armv7l.whl
31+
sudo pip install tensorflow-0.8.0-cp27-none-linux_armv7l.whl
3232
```
3333

3434
And that should be it!
@@ -37,12 +37,12 @@ And that should be it!
3737

3838
_This section will attempt to maintain a list of remedies for problems that may occur while installing from `pip`_
3939

40-
#### "tensorflow-0.8.0rc0-cp27-none-linux_armv7l.whl is not a supported wheel on this platform."
40+
#### "tensorflow-0.8.0-cp27-none-linux_armv7l.whl is not a supported wheel on this platform."
4141

4242
This wheel was built with Python 2.7, and can't be installed with a version of `pip` that uses Python 3. If you get the above message, try running the following command instead:
4343

4444
```
45-
sudo pip2 install tensorflow-0.8.0rc0-cp27-none-linux_armv7l.whll
45+
sudo pip2 install tensorflow-0.8.0-cp27-none-linux_armv7l.whl
4646
```
4747

4848
## Building from Source
20.9 MB
Binary file not shown.

0 commit comments

Comments
 (0)