From ea1e30dfa928debfc513c8e823c1eae5d9e92dd5 Mon Sep 17 00:00:00 2001 From: Matthew Date: Wed, 6 Mar 2024 14:14:05 +0000 Subject: [PATCH] Update photoprism-install.sh (#2610) For some reason it seems as though the binaries as part of `libheif1` install not to `/usr/local/bin` but to `/usr/local` and so were not on the path, therefore the default value of photoprism's `--heifconvert-bin` / `$PHOTOPRISM_HEIFCONVERT_BIN` (`heif-convert`) would not be resolved --- install/photoprism-install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/photoprism-install.sh b/install/photoprism-install.sh index d1d950ad..a7bec81f 100644 --- a/install/photoprism-install.sh +++ b/install/photoprism-install.sh @@ -27,6 +27,8 @@ $STD apt-get install -y imagemagick $STD apt-get install -y darktable $STD apt-get install -y rawtherapee +echo 'export PATH=/usr/local:$PATH' >>~/.bashrc +export PATH=/usr/local:$PATH msg_ok "Installed Dependencies" msg_info "Installing PhotoPrism (Patience)"