Skip to content

Commit

Permalink
Initial changes for 0.11.0 release
Browse files Browse the repository at this point in the history
* Update release files
* Remove binary files from repository (makes cloning smaller)
    * Binaries are still available in the "Releases page"
  • Loading branch information
samjabrahams committed Dec 5, 2016
1 parent 32582e7 commit 2652c50
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
archive/
bin/
2 changes: 1 addition & 1 deletion GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,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.10-cp27-none-linux_armv7l.whl
sudo pip install /tmp/tensorflow_pkg/tensorflow-0.11-cp27-none-linux_armv7l.whl
```

### 7. Cleaning Up
Expand Down
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ This is the easiest way to get TensorFlow onto your Raspberry Pi 3. Note that cu
First, install the dependencies for TensorFlow:

```shell
$ sudo apt-get update

# For Python 2.7
$ sudo apt-get install python-pip python-dev

Expand All @@ -32,12 +34,12 @@ Next, download the wheel file from this repository and install it:

```shell
# For Python 2.7
$ wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.10.0-cp27-none-linux_armv7l.whl
$ sudo pip install tensorflow-0.10.0-cp27-none-linux_armv7l.whl
$ wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.11.0-cp27-none-linux_armv7l.whl
$ sudo pip install tensorflow-0.11.0-cp27-none-linux_armv7l.whl

# For Python 3.3+
$ wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.10.0-py3-none-any.whl
$ sudo pip install tensorflow-0.10.0-py3-none-any.whl
$ wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/raw/master/bin/tensorflow-0.11.0-py3-none-any.whl
$ sudo pip3 install tensorflow-0.11.0-py3-none-any.whl
```

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

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

#### "tensorflow-0.10-cp27-none-linux_armv7l.whl is not a supported wheel on this platform."
#### "tensorflow-0.11-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.10-cp27-none-linux_armv7l.whl
$ sudo pip2 install tensorflow-0.11-cp27-none-linux_armv7l.whl
```

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

```
$ sudo pip3 install tensorflow-0.10-py3-none-any.whl
$ sudo pip3 install tensorflow-0.11-py3-none-any.whl
```

## Building from Source
Expand Down
Binary file removed bin/tensorflow-0.10.0-cp27-none-linux_armv7l.whl
Binary file not shown.
Binary file removed bin/tensorflow-0.10.0-py3-none-any.whl
Binary file not shown.

0 comments on commit 2652c50

Please sign in to comment.