mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 23:15:16 +00:00
12 lines
214 B
Bash
12 lines
214 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
DEPS_ROOT=$(cd "$(dirname "$0")/" && pwd)
|
||
|
cd ${DEPS_ROOT}
|
||
|
|
||
|
echo "Downloading tensorflow in ${PWD}..."
|
||
|
|
||
|
git clone https://github.com/tensorflow/tensorflow.git tensorflow-src \
|
||
|
--branch v2.9.2
|
||
|
|
||
|
exit 0
|