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.

Update photoprism-install.sh

pull/226/head
tteckster 3 years ago committed by GitHub
parent 8840fabc1f
commit 28a714a4f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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"

Loading…
Cancel
Save

Powered by BW's shoe-string budget.