install_tensorflow.sh 214 B

1234567891011
  1. #!/bin/sh
  2. DEPS_ROOT=$(cd "$(dirname "$0")/" && pwd)
  3. cd ${DEPS_ROOT}
  4. echo "Downloading tensorflow in ${PWD}..."
  5. git clone https://github.com/tensorflow/tensorflow.git tensorflow-src \
  6. --branch v2.9.2
  7. exit 0