We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 635b3b7 commit 60226caCopy full SHA for 60226ca
oss_scripts/configure.sh
@@ -25,7 +25,7 @@ function write_action_env_to_bazelrc() {
25
if python -c "import tensorflow" &> /dev/null; then
26
echo 'using installed tensorflow'
27
else
28
- pip install tensorflow-1.14.0
+ pip install tensorflow==1.14.0
29
fi
30
31
TF_CFLAGS=( $(python -c 'import tensorflow as tf; print(" ".join(tf.sysconfig.get_compile_flags()))') )
@@ -34,4 +34,4 @@ TF_LFLAGS2=( $(python -c 'import tensorflow as tf; print(" ".join(tf.sysconfig.g
34
35
write_action_env_to_bazelrc "TF_HEADER_DIR" ${TF_CFLAGS:2}
36
write_action_env_to_bazelrc "TF_SHARED_LIBRARY_DIR" ${TF_LFLAGS:2}
37
-write_action_env_to_bazelrc "TF_SHARED_LIBRARY" ${TF_LFLAGS:3}
+write_action_env_to_bazelrc "TF_SHARED_LIBRARY" ${TF_LFLAGS2:3}
0 commit comments