Support fetch-test-deps.sh --get-deps debian

Also use `apt-get` instead of `pip` to install
Pillow for libbet
This commit is contained in:
Rangi42
2025-01-21 14:34:20 -05:00
parent a5e36f924f
commit 157826bf82

View File

@@ -57,12 +57,12 @@ case "$actionname" in
# libbet depends on PIL to build
if [ "$2" = "libbet" ]; then
case "${osname%-*}" in
ubuntu | debian)
sudo apt-get install python3-pil
;;
macos)
python3 -m pip install --break-system-packages pillow
;;
ubuntu)
python3 -m pip install pillow
;;
windows)
py -3 -m pip install pillow
;;