Skip to content

Commit

Permalink
TensorFlow v0.8.0 full release
Browse files Browse the repository at this point in the history
  • Loading branch information
samjabrahams committed May 4, 2016
1 parent 82c022d commit 8646905
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ After that, copy the two Protobuf files mentioned earlier into the Bazel project

```shell
sudo cp /usr/bin/protoc third_party/protobuf/protoc-linux-arm32.exe
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
sudo cp ../protobuf/java/target/protobuf-java-3.0.0-beta-2.jar third_party/protobuf/protobuf-java-3.0.0-beta-1.jar
```

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).
Expand Down Expand Up @@ -298,7 +298,7 @@ bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg
And then install it!

```shell
sudo pip install /tmp/tensorflow_pkg/tensorflow-0.8.0rc0-cp27-none-linux_armv7l.whl
sudo pip install /tmp/tensorflow_pkg/tensorflow-0.8.0-cp27-none-linux_armv7l.whl
```

### 6. Cleaning Up
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ sudo apt-get install python-pip python-dev
Next, download the wheel file from this repository and install it:

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

sudo pip install tensorflow-0.8.0rc0-cp27-none-linux_armv7l.whl
sudo pip install tensorflow-0.8.0-cp27-none-linux_armv7l.whl
```

And that should be it!
Expand All @@ -37,12 +37,12 @@ And that should be it!

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

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

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:

```
sudo pip2 install tensorflow-0.8.0rc0-cp27-none-linux_armv7l.whll
sudo pip2 install tensorflow-0.8.0-cp27-none-linux_armv7l.whl
```

## Building from Source
Expand Down
Binary file added bin/tensorflow-0.8.0-cp27-none-linux_armv7l.whl
Binary file not shown.

0 comments on commit 8646905

Please sign in to comment.