Den torsdag 12 november 2015 kl. 06:36:28 UTC+1 skrev Alireza Nejati > > Anyway, the problem I'm facing right now is that even though TensorFlow's > python interface works fine, I can't get TensorFlow's C library to build! > Has anyone else had any luck with this? I've had to update java AND gcc > just to make some progress in building (they use c++11 features, don't > ask). Plus I had to install google's own bizarre and buggy build manager > (bazel). TensorFlow.jl would be kind of pointless if everyone faced the > same build issues... >
I managed to build from source on an Ubuntu machine at work, following the instructions at https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/get_started/os_setup.md. The most difficult part was getting the Python package installation dependencies in working order, which was not covered by the instructions. (The low mark being "pip install --no-use-wheel --upgrade distribute", which a google search suggested to get past the final hurdle and actually did work. Please don't emulate this in Julia.) Whether it actually built anything useful beyond what the Python package needed I have no idea though. There's a forest of bazel generated directories that I'm not particularly tempted to try to navigate unless there's something specific I should look into.
