Skip to content

Commit 5fb2fa4

Browse files
committedApr 4, 2017
Initial changes for 1.0.1
1 parent 09f289a commit 5fb2fa4

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed
 

‎GUIDE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ cd ..
283283
First things first, clone the TensorFlow repository and move into the newly created directory.
284284

285285
```shell
286-
git clone --recurse-submodules https://github.com/tensorflow/tensorflow
286+
git clone --recurse-submodules https://github.com/tensorflow/tensorflow.git
287287
cd tensorflow
288288
```
289289

@@ -360,7 +360,7 @@ bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg
360360
And then install it!
361361

362362
```shell
363-
sudo pip install /tmp/tensorflow_pkg/tensorflow-1.0.0-cp27-none-linux_armv7l.whl
363+
sudo pip install /tmp/tensorflow_pkg/tensorflow-1.0.1-cp27-none-linux_armv7l.whl
364364
```
365365

366366
### 6. Cleaning Up

‎README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -38,24 +38,24 @@ 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/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
41+
wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/releases/download/v1.0.1/tensorflow-1.0.1-cp27-none-linux_armv7l.whl
42+
pip install --user tensorflow-1.0.1-cp27-none-linux_armv7l.whl
4343

4444
# 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
45+
wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/releases/download/v1.0.1/tensorflow-1.0.1-cp34-cp34m-linux_armv7l.whl
46+
pip3 install --user tensorflow-1.0.1-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:
5050

5151
```shell
5252
# For Python 2.7
53-
sudo pip uninstall mock
54-
sudo pip install mock
53+
pip uninstall mock
54+
pip install --user mock
5555

5656
# For Python 3.3+
57-
sudo pip3 uninstall mock
58-
sudo pip3 install mock
57+
pip3 uninstall mock
58+
pip3 install --user mock
5959
```
6060

6161
And that should be it!
@@ -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-1.0.0-cp27-none-linux_armv7l.whl is not a supported wheel on this platform."
71+
#### "tensorflow-1.0.1-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-1.0.0-cp27-none-linux_armv7l.whl
76+
sudo pip2 install tensorflow-1.0.1-cp27-none-linux_armv7l.whl
7777
```
7878

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:
79+
Vice-versa for trying to install the Python 3 wheel. If you get the error "tensorflow-1.0.1-cp34-cp34m-any.whl is not a supported wheel on this platform.", try this command:
8080

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

8585
**Note: the provided binaries are for Python 2.7 and 3.4 _only_. If you've installed Python 3.5/3.6 from source on your machine, you'll need to either explicitly install these wheels for 3.4, or you'll need to build TensorFlow [from source](GUIDE.md). Once there's an officially supported installation of Python 3.5+, this repo will start including wheels for those versions.**

0 commit comments

Comments
 (0)