mdhiggins / sonarr-sma

Sonarr docker based on linuxserver/sonarr with SMA built in using python3
MIT License
37 stars 18 forks source link

Both sonarr-sma & radarr-sma #15

Closed djrarky closed 3 years ago

djrarky commented 3 years ago

When running manual.py, get the error

root@e3dcba9759e7:~# /usr/local/sma/manual.py Traceback (most recent call last): File "/usr/local/sma/manual.py", line 5, in import guessit ModuleNotFoundError: No module named 'guessit'

mdhiggins commented 3 years ago

This is a super generic python error for not having a module installed, in your case guessit

mdhiggins commented 3 years ago

Wait just realized this was on the docker container, you need to use the python virtual environment, you can't just execute the file directly

$SMA_PATH/venv/bin/python3 $SMA_PATH/manual.py