You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
283 B
12 lines
283 B
5 years ago
|
#!/bin/bash
|
||
|
TF=libtensorflow-gpu-linux-x86_64-1.13.1.tar.gz
|
||
|
#TF=libtensorflow-gpu-linux-x86_64-1.14.0.tar.gz
|
||
|
#TF=libtensorflow-gpu-linux-x86_64-1.15.0.tar.gz
|
||
|
|
||
|
if [ ! -f $TF ]; then
|
||
|
wget https://storage.googleapis.com/tensorflow/libtensorflow/$TF
|
||
|
fi
|
||
|
rm -rf include lib
|
||
|
tar xvf $TF
|
||
|
|