arixlin
Results
1
comments of
arixlin
#tensorflow1.x #!/bin/bash TF_INC=$(python3 -c "import tensorflow as tf; print(tf.sysconfig.get_include())") TF_LIB=$(python3 -c "import tensorflow as tf; print(tf.sysconfig.get_lib())") echo "TF_INC: $TF_INC" >&2 echo "TF_LIB: $TF_LIB" `>&2` #if tensorflow2.x (cd $TF_LIB && ln...