Skip to content

Commit 3ee40bc

Browse files
committed
Add back wheel and fix clib unzip path
1 parent de88439 commit 3ee40bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tensorflow-core/tensorflow-core-native/scripts/dist_download.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ case ${PLATFORM:-} in
1717
WHEEL_URL='https://files.pythonhosted.org/packages/eb/9f/0759e2fea4a3c48f070b64811c2c57036b46353ba87263afc810b8f4188a/tensorflow_macos-2.15.0-cp311-cp311-macosx_12_0_arm64.whl'
1818
;;
1919
'windows-x86_64')
20-
#WHEEL_URL='https://files.pythonhosted.org/packages/4c/48/1a5a15517f18eaa4ff8d598b1c000300b20c1bb0e624539d702117a0c369/tensorflow_intel-2.15.0-cp311-cp311-win_amd64.whl'
20+
WHEEL_URL='https://files.pythonhosted.org/packages/4c/48/1a5a15517f18eaa4ff8d598b1c000300b20c1bb0e624539d702117a0c369/tensorflow_intel-2.15.0-cp311-cp311-win_amd64.whl'
2121
#CLIB_URL='https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-windows-x86_64-2.15.0.zip'
2222
CLIB_URL='https://storage.googleapis.com/libtensorflow-nightly/prod/tensorflow/release/windows/latest/cpu/windows_cpu_libtensorflow_binaries.tar.gz'
2323
;;
@@ -49,7 +49,7 @@ if [[ -n "$CLIB_URL" ]]; then
4949
curl -L $CLIB_URL --output 'tensorflow_c.tar.gz'
5050
fi
5151
yes | tar xzvf 'tensorflow_c.tar.gz'
52-
yes | unzip -q -u 'lib_package/libtensorflow-cpu-windows-x86_64.zip'
52+
yes | unzip -q -u -d tensorflow 'lib_package/libtensorflow-cpu-windows-x86_64.zip'
5353
fi
5454

5555
cd tensorflow

0 commit comments

Comments
 (0)