mdhiggins / radarr-sma

MIT License
24 stars 13 forks source link

manual.py script not working in container #11

Closed automator0 closed 4 years ago

automator0 commented 4 years ago

In the latest container, the manual.py script is not working due to a guessit error

Traceback (most recent call last): File "./manual.py", line 5, in import guessit ModuleNotFoundError: No module named 'guessit'

Is something missing?

mdhiggins commented 4 years ago

Are you executing the script in the correct virtual environment? For the container all the dependencies are installed using venv and you need to execute within that environment

/usr/local/sma/venv/bin/python3 /usr/local/sma/manual.py

automator0 commented 4 years ago

That was it! Noted it is in the other environment

Thanks!