Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/28a714a4f70823c533fb5e40a375eafe85fd588e?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
22 additions and
7 deletions
@ -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"