7 ms·
This seems to be a frankenstein of cuda 7.5 instructions and cuda 8.0. Similarly ubuntu 14.04 and 16.04. As far as i know, these instructions will fail from gcc
by hughperkins 10y ago
This seems to be a frankenstein of cuda 7.5 instructions and cuda 8.0. Similarly ubuntu 14.04 and 16.04. As far as i know, these instructions will fail from gcc 5.4 errors, amongst other issues.
- wagonhelm 10y agoWont GCC fail, includes a patch for GCC, I tested on my system before posting. Running great!
- flx42_ 10y agoOne of your section is named "Install Nvidia Toolkit 7.5", this is probably what confused parent @hughperkins.
- wagonhelm 10y agoJust found that one and fixed it, also someone confirmed working with a GTX 1080. I am so happy to finally ditch 14.04
- hughperkins 10y agoAh, I see what I was missing before: there's a patch 1 of cuda 8.0, which adds gcc 5.4 support, and is installed in the cuda section using: sudo sh cuda_8.0.27.1_linux.run --silent --accept-eula
- hughperkins 10y agoStill doesnt work for me though: even on a new box, I get: ubuntu@somewhere:~/tensorflow$ python3 -c 'import tensorflow' Traceback (most recent call last): File "<string>", line 1, in <module> File "/home/ubuntu/tensorflow/tensorflow/__init__.py", line 23, in <module> from tensorflow.python import * File "/home/ubuntu/tensorflow/tensorflow/python/__init__.py", line 49, in <mod ule> from tensorflow.python import pywrap_tensorflow ImportError: cannot import name 'pywrap_tensorflow'
- hughperkins 10y agoOk. Fixed this by two things: - using branch r0.10, as suggested by https://news.ycombinator.com/item?id=12464835 https://news.ycombinator.com/item?id=12464835 - making sure to install the new r0.10 wheel, which has a different name than the r0 wheel built by master :-D
- wagonhelm 10y agoThanks for sharing your solution!