You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Finally, we need to reinstall the `mock` library to keep it from throwing an error when we import TensorFlow:
50
50
51
51
```shell
52
52
# For Python 2.7
53
-
sudo pip uninstall mock
54
-
sudo pip install mock
53
+
pip uninstall mock
54
+
pip install --user mock
55
55
56
56
# For Python 3.3+
57
-
sudo pip3 uninstall mock
58
-
sudo pip3 install mock
57
+
pip3 uninstall mock
58
+
pip3 install --user mock
59
59
```
60
60
61
61
And that should be it!
@@ -68,18 +68,18 @@ Instructions on setting up a Docker image to run on Raspberry Pi are being maint
68
68
69
69
_This section will attempt to maintain a list of remedies for problems that may occur while installing from `pip`_
70
70
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."
72
72
73
73
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:
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:
**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