Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/284729b5012dfb8748870a7779ec73d5011d0a7f?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
10 additions and
1 deletions
@ -1,4 +1,5 @@
#!/usr/bin/env bash
AVX = $( grep -o -m1 'avx[^ ]*' /proc/cpuinfo)
YW = ` echo "\033[33m" `
RD = ` echo "\033[01;31m" `
BL = ` echo "\033[36m" `
@ -100,9 +101,17 @@ cp /root/go/bin/* /usr/local/bin/
msg_ok "Installed Golang"
msg_info "Installing Tensorflow"
if [ [ " $AVX " = = "avx2" ] ] ; then
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
elif [ [ " $AVX " = = "avx" ] ] ; then
wget https://dl.photoprism.org/tensorflow/linux/libtensorflow-linux-avx-1.15.2.tar.gz & >/dev/null
tar -C /usr/local -xzf libtensorflow-linux-avx-1.15.2.tar.gz & >/dev/null
elif [ [ " $AVX " = = " " ] ] ; 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
ldconfig & >/dev/null
fi
ldconfig & >/dev/null
msg_ok "Installed Tensorflow"
msg_info "Cloning PhotoPrism"