Skip to content

Commit d80dd92

Browse files
committed
Update GUIDE.md, README.md with 0.9.0rc binaries
Forgot to update link to binaries, as per #24
1 parent a121570 commit d80dd92

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg
307307
And then install it!
308308

309309
```shell
310-
sudo pip install /tmp/tensorflow_pkg/tensorflow-0.8.0-cp27-none-linux_armv7l.whl
310+
sudo pip install /tmp/tensorflow_pkg/tensorflow-0.9.0rc-cp27-none-linux_armv7l.whl
311311
```
312312

313313
### 6. Cleaning Up

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ Next, download the wheel file from this repository and install it:
3131

3232
```shell
3333
# For Python 2.7
34-
$ wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.8.0-cp27-none-linux_armv7l.whl
35-
$ sudo pip install tensorflow-0.8.0-cp27-none-linux_armv7l.whl
34+
$ wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.9.0rc0-cp27-none-linux_armv7l.whl
35+
$ sudo pip install tensorflow-0.9.0rc0-cp27-none-linux_armv7l.whl
3636

3737
# For Python 3.3+
38-
$ wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.8.0-cp34-cp34m-linux_armv7l.whl
39-
$ sudo pip install tensorflow-0.8.0-cp34-cp34m-linux_armv7l
38+
$ wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.9.0rc0-py3-none-any.whl
39+
$ sudo pip install tensorflow-0.9.0rc0-py3-none-any.whl
4040
```
4141

4242
And that should be it!
@@ -45,18 +45,18 @@ And that should be it!
4545

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

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

5050
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:
5151

5252
```
53-
$ sudo pip2 install tensorflow-0.8.0-cp27-none-linux_armv7l.whl
53+
$ sudo pip2 install tensorflow-0.9.0rc0-cp27-none-linux_armv7l.whl
5454
```
5555

56-
Vice-versa for trying to install the Python 3 wheel. If you get the error "tensorflow-0.8.0-cp34-cp34m-linux_armv7l is not a supported wheel on this platform.", try this command:
56+
Vice-versa for trying to install the Python 3 wheel. If you get the error "tensorflow-0.9.0rc0-py3-none-any.whl is not a supported wheel on this platform.", try this command:
5757

5858
```
59-
$ sudo pip3 install tensorflow-0.8.0-cp34-cp34m-linux_armv7l
59+
$ sudo pip3 install tensorflow-0.9.0rc0-py3-none-any.whl
6060
```
6161

6262
## Building from Source

0 commit comments

Comments
 (0)