peterlee0127 / tensorflow-nvJetson

TensorFlow for NVIDIA Jetson, also include patch and script for building.
https://tfjetson.peterlee.app
205 stars 61 forks source link

"Architecture is not a supported one" - but it is... #18

Closed MikeWise2718 closed 6 years ago

MikeWise2718 commented 6 years ago

Kind of weird, and probably not the fault of the build, but if you have an idea here please let me know. I wrote it up on StackOverflow: https://stackoverflow.com/questions/50506088/tensorflow-whl-is-not-a-supported-wheel-on-this-platform-although-pep425-tags

peterlee0127 commented 6 years ago

You may try to install pip https://pip.pypa.io/en/stable/installing/ $ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py $ sudo python get.pip.py

and check your python is 2.7 $ python Python 2.7.12 (default, Dec 4 2017, 14:50:18) [GCC 5.4.0 20160609] on linux2 Type "help", "copyright", "credits" or "license" for more information.

And you also need to install before you install pip files $ sudo apt install python-dev

And thanks for you coffee.

MikeWise2718 commented 6 years ago

And thank you for the suggestion, it worked (reinstalling pip the way you suggested). Kind of weird because I had just upgraded to pip 10 which I think is what broke it, but there must have been something wrong with that upgrade.

If you want to answer the SO question, do so and I will mark it right.