Files
2023-07-26 11:19:21 -04:00

22 lines
718 B
Plaintext
Executable File

#!/usr/bin/with-contenv bash
if ! pip list 2> /dev/null | grep -q "pillow-heif" || ! pip list 2> /dev/null | grep -q "hexhamming" || ! pip list 2> /dev/null | grep -q "PyWavelets"; then
echo "**** Adding pillow-heif, hexhamming, pywavelets and their deps to package install lists ****"
echo "\
ffmpeg \
imagemagick \
supervisor" >> /mod-repo-packages-to-install.list
echo "\
asn1crypto \
cryptography \
hexhamming \
numpy \
pillow \
pillow-heif \
pynacl \
pywavelets \
scipy" >> /mod-pip-packages-to-install.list
else
echo "**** pillow-heif, hexhamming and pywavelets already installed, skipping ****"
fi