We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fe9d5f commit 8edcf7dCopy full SHA for 8edcf7d
configure.sh
@@ -35,6 +35,11 @@ function write_action_env_to_bazelrc() {
35
}
36
37
[[ -f .bazelrc ]] && rm .bazelrc
38
+read -r -p "Tensorflow will be upgraded to 2.0. Are You Sure? [Y/n] " reply
39
+case $reply in
40
+ [yY]*) echo "Installing...";;
41
+ * ) echo "Goodbye!"; exit;;
42
+esac
43
pip install $QUIET_FLAG -r requirements.txt
44
45
TF_CFLAGS=( $(python -c 'import tensorflow as tf; print(" ".join(tf.sysconfig.get_compile_flags()))') )
0 commit comments