Reputation: 619
I've built tensorflow using python 3.5, but when attempting to install it via pip3 (in python 3.6), it says
tensorflow-1.12.0-cp35-cp35m-linux_x86_64.whl is not a supported wheel on this platform.
So, is this due to being incompatible python versions?
Bonus question: how can I get pip to tell me the reason for the incompatibility?
Upvotes: 0
Views: 385
Reputation: 43024
The package apparently has some compiled bits that may not be compatible across versions. The Python ABI may be different.
You can install pre-built tensorflow right from Pypi
$ pip3.6 install tensorflow
Will that work for you?
Upvotes: 1