Skip to content

Commit cdbfb50

Browse files
committed
Update README and GUIDE for 1.0.0
1 parent 52fd02e commit cdbfb50

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

GUIDE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg
345345
And then install it!
346346

347347
```shell
348-
sudo pip install /tmp/tensorflow_pkg/tensorflow-0.12.1-cp27-none-linux_armv7l.whl
348+
sudo pip install /tmp/tensorflow_pkg/tensorflow-1.0.0-cp27-none-linux_armv7l.whl
349349
```
350350

351351
### 6. Cleaning Up

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ Next, download the wheel file from this repository and install it:
3838

3939
```shell
4040
# For Python 2.7
41-
wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/releases/download/v0.12.1/tensorflow-0.12.1-cp27-none-linux_armv7l.whl
42-
sudo pip install tensorflow-0.12.1-cp27-none-linux_armv7l.whl
41+
wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/releases/download/v1.0.0/tensorflow-1.0.0-cp27-none-linux_armv7l.whl
42+
sudo pip install tensorflow-1.0.0-cp27-none-linux_armv7l.whl
4343

44-
# For Python 3.3+
45-
wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/releases/download/v0.12.1/tensorflow-0.12.1-cp34-cp34m-linux_armv7l.whl
46-
sudo pip3 install tensorflow-0.12.1-cp34-cp34m-linux_armv7l.whl
44+
# For Python 3.4
45+
wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/releases/download/v1.0.0/tensorflow-1.0.0-cp34-cp34m-linux_armv7l.whl
46+
sudo pip3 install tensorflow-1.0.0-cp34-cp34m-linux_armv7l.whl
4747
```
4848

4949
Finally, we need to reinstall the `mock` library to keep it from throwing an error when we import TensorFlow:
@@ -68,18 +68,18 @@ Instructions on setting up a Docker image to run on Raspberry Pi are being maint
6868

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

71-
#### "tensorflow-0.12.1-cp27-none-linux_armv7l.whl is not a supported wheel on this platform."
71+
#### "tensorflow-1.0.0-cp27-none-linux_armv7l.whl is not a supported wheel on this platform."
7272

7373
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:
7474

7575
```
76-
sudo pip2 install tensorflow-0.12.1-cp27-none-linux_armv7l.whl
76+
sudo pip2 install tensorflow-1.0.0-cp27-none-linux_armv7l.whl
7777
```
7878

79-
Vice-versa for trying to install the Python 3 wheel. If you get the error "tensorflow-0.12.1-py3-none-any.whl is not a supported wheel on this platform.", try this command:
79+
Vice-versa for trying to install the Python 3 wheel. If you get the error "tensorflow-1.0.0-cp34-cp34m-any.whl is not a supported wheel on this platform.", try this command:
8080

8181
```
82-
sudo pip3 install tensorflow-0.12.1-cp34-cp34m-linux_armv7l.whl
82+
sudo pip3 install tensorflow-1.0.0-cp34-cp34m-linux_armv7l.whl
8383
```
8484

8585
## Building from Source

0 commit comments

Comments
 (0)