**关闭。**这个问题是not reproducible or was caused by typos。目前不接受答复。
此问题是由打印错误或无法再重现的问题引起的。虽然类似的问题可能是on-topic在这里,这一个是解决的方式不太可能帮助未来的读者。
5年前关闭。
Improve this question
我正在尝试在Ubuntu上安装TensorFlow for C。我遵循了https://www.tensorflow.org/install/install_c上的所有指示。
请参阅下面的命令和结果。请告诉我为什么会出现编译错误:
cd /home/sarkar/tensorflow
gcc hello_tf.c
输出:
hello_tf.c: In function ‘main’:
hello_tf.c:5:3: error: stray ‘\342’ in program
printf(“Tensor flow C library version %s\n”,TF_Version());
^
hello_tf.c:5:3: error: stray ‘\200’ in program
hello_tf.c:5:3: error: stray ‘\234’ in program
hello_tf.c:5:13: error:‘Tensor’ undeclared (first use in thisfunction)
printf(“Tensor flow C library version %s\n”,TF_Version());
^
hello_tf.c:5:13: note: each undeclared identifier is reported only
once for each function it appears in
hello_tf.c:5:20: error: expected ‘)’ before ‘flow’
printf(“Tensor flow C library version %s\n”,TF_Version());
^
hello_tf.c:5:20: error: stray ‘\’ in program
hello_tf.c:5:20: error: stray ‘\342’ in program
2条答案
按热度按时间ghg1uchk1#
经过一番研究,我发现:GCC stray errors
错误的原因是引号。一个可能的解决办法是替换它们。
envsm3lx2#
只需将所有
“
更改为"
即可。