Skip to content

Commit dd92112

Browse files
Fix python errors...
1 parent d1c8fe2 commit dd92112

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sonarr/setup.bash

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ apk add -U --update --no-cache \
1616
ffmpeg \
1717
yt-dlp
1818
echo "************ install python packages ************"
19-
pip install --upgrade --no-cache-dir -U \
19+
pip install --upgrade --no-cache-dir -U --break-system-packages \
2020
excludarr \
2121
yq
2222
echo "************ setup SMA ************"
@@ -32,8 +32,8 @@ echo "************ create logging file ************"
3232
mkdir -p /config/extended/sma/config
3333
touch /config/extended/sma/config/sma.log
3434
echo "************ install pip dependencies ************"
35-
pip install --upgrade pip --no-cache-dir
36-
pip install -r /config/extended/sma/setup/requirements.txt --no-cache-dir
35+
pip install --upgrade pip --no-cache-dir --break-system-packages
36+
pip install -r /config/extended/sma/setup/requirements.txt --no-cache-dir --break-system-packages
3737
chmod 777 -R /config/extended/sma
3838
echo "************ install recyclarr ************"
3939
mkdir -p /recyclarr

0 commit comments

Comments
 (0)