Skip to content

Commit 9d1c006

Browse files
committed
Update filenames in README.md
1 parent 20659e8 commit 9d1c006

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ Next, download the wheel file from this repository and install it:
3232

3333
```shell
3434
# For Python 2.7
35-
$ wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.9.0-cp27-none-linux_armv7l.whl
36-
$ sudo pip install tensorflow-0.9.0-cp27-none-linux_armv7l.whl
35+
$ wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.10.0-cp27-none-linux_armv7l.whl
36+
$ sudo pip install tensorflow-0.10.0-cp27-none-linux_armv7l.whl
3737

3838
# For Python 3.3+
39-
$ wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.9.0-py3-none-any.whl
40-
$ sudo pip install tensorflow-0.9.0-py3-none-any.whl
39+
$ wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.10.0-py3-none-any.whl
40+
$ sudo pip install tensorflow-0.10.0-py3-none-any.whl
4141
```
4242

4343
And that should be it!
@@ -50,18 +50,18 @@ Instructions on setting up a Docker image to run on Raspberry Pi are being maint
5050

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

53-
#### "tensorflow-0.9-cp27-none-linux_armv7l.whl is not a supported wheel on this platform."
53+
#### "tensorflow-0.10-cp27-none-linux_armv7l.whl is not a supported wheel on this platform."
5454

5555
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:
5656

5757
```
58-
$ sudo pip2 install tensorflow-0.9-cp27-none-linux_armv7l.whl
58+
$ sudo pip2 install tensorflow-0.10-cp27-none-linux_armv7l.whl
5959
```
6060

61-
Vice-versa for trying to install the Python 3 wheel. If you get the error "tensorflow-0.9-py3-none-any.whl is not a supported wheel on this platform.", try this command:
61+
Vice-versa for trying to install the Python 3 wheel. If you get the error "tensorflow-0.10-py3-none-any.whl is not a supported wheel on this platform.", try this command:
6262

6363
```
64-
$ sudo pip3 install tensorflow-0.9-py3-none-any.whl
64+
$ sudo pip3 install tensorflow-0.10-py3-none-any.whl
6565
```
6666

6767
## Building from Source

0 commit comments

Comments
 (0)