Update photoprism-install.sh

This commit is contained in:
tteckster 2022-05-07 11:36:44 -04:00 committed by GitHub
parent 8840fabc1f
commit 28a714a4f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,7 +100,17 @@ cp /root/go/bin/* /usr/local/go/bin/
cp /root/go/bin/* /usr/local/bin/ cp /root/go/bin/* /usr/local/bin/
msg_ok "Installed Golang" msg_ok "Installed Golang"
read -p "Check For Advanced Vector Extensions? " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
check=yes
else
check=no
fi
msg_info "Installing Tensorflow" msg_info "Installing Tensorflow"
if [ "$check" == "yes" ]; then
if [[ "$AVX" == "avx2" ]]; then if [[ "$AVX" == "avx2" ]]; then
wget https://dl.photoprism.org/tensorflow/linux/libtensorflow-linux-avx2-1.15.2.tar.gz &>/dev/null wget https://dl.photoprism.org/tensorflow/linux/libtensorflow-linux-avx2-1.15.2.tar.gz &>/dev/null
tar -C /usr/local -xzf libtensorflow-linux-avx2-1.15.2.tar.gz &>/dev/null tar -C /usr/local -xzf libtensorflow-linux-avx2-1.15.2.tar.gz &>/dev/null
@ -111,6 +121,11 @@ if [[ "$AVX" == "avx2" ]]; then
wget https://dl.photoprism.org/tensorflow/linux/libtensorflow-linux-cpu-1.15.2.tar.gz &>/dev/null wget https://dl.photoprism.org/tensorflow/linux/libtensorflow-linux-cpu-1.15.2.tar.gz &>/dev/null
tar -C /usr/local -xzf libtensorflow-linux-cpu-1.15.2.tar.gz &>/dev/null tar -C /usr/local -xzf libtensorflow-linux-cpu-1.15.2.tar.gz &>/dev/null
fi fi
fi
if [ "$check" == "no" ]; then
wget https://dl.photoprism.org/tensorflow/linux/libtensorflow-linux-cpu-1.15.2.tar.gz &>/dev/null
tar -C /usr/local -xzf libtensorflow-linux-cpu-1.15.2.tar.gz &>/dev/null
fi
ldconfig &>/dev/null ldconfig &>/dev/null
msg_ok "Installed Tensorflow" msg_ok "Installed Tensorflow"