hughperkins / tf-coriander

OpenCL 1.2 implementation for Tensorflow
Apache License 2.0
791 stars 90 forks source link

Install fails with wheel error #16

Closed Whytehorse closed 7 years ago

Whytehorse commented 7 years ago

Following the readme instructions for a standard install gives the following error on Ubuntu 16.04.

$ pip install --upgrade tensorflow-0.11.0rc0-py3-none-any.whl
tensorflow-0.11.0rc0-py3-none-any.whl is not a supported wheel on this platform.

I fixed it by using pip3 instead of pip.

yarrseni commented 7 years ago

You most probably are using pip from python2.7 since it is ubuntu and you have some issues with virtual environment in a separate 'bug'. Try installing with pip3 install --upgrade tensorflow-0.11.0rc0-py3-none-any.whl, since the wheel you've mentioned is build for python3 (-py3- is telling it).