caronc / nzb-notify

Push Notifications to a large number of supported services for NZBGet and SABnzbd (based on Apprise)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

module named six is missing

ljflowers90 opened this issue · comments

ive been trying for the past few days to get this working on nzbget

this is all on ubuntu seedbox

Wed Jul 1 23:32:58 2020 WARNING Notify: Fixing permissions for/home1/ljflowers20/Nzbget/scripts/nzb-notify-master/Notify.py
Wed Jul 1 23:32:58 2020 INFO Notify: Traceback (most recent call last):
Wed Jul 1 23:32:58 2020 INFO Notify: File "/home1/ljflowers20/Nzbget/scripts/nzb-notify-master/Notify.py", line 169, in
Wed Jul 1 23:32:58 2020 INFO Notify: import six
Wed Jul 1 23:32:58 2020 INFO Notify: ModuleNotFoundError: No module named 'six'
Wed Jul 1 23:32:58 2020 ERROR Script nzb-notify-master/Notify.py with command TestServers failed (terminated with unknown status)
Wed Jul 1 23:36:30 2020 INFO Executing script nzb-notify-master/Notify.py with command TestServers
Wed Jul 1 23:36:30 2020 INFO Notify: Traceback (most recent call last):
Wed Jul 1 23:36:30 2020 INFO Notify: File "/home1/ljflowers20/Nzbget/scripts/nzb-notify-master/Notify.py", line 169, in
Wed Jul 1 23:36:30 2020 INFO Notify: import six
Wed Jul 1 23:36:30 2020 INFO Notify: ModuleNotFoundError: No module named 'six'
Wed Jul 1 23:36:30 2020 ERROR Script nzb-notify-master/Notify.py with command TestServers failed (terminated with unknown status)
Wed Jul 1 23:40:08 2020 INFO Executing script nzb-notify-master/Notify.py with command TestServers
Wed Jul 1 23:40:08 2020 INFO Notify: Traceback (most recent call last):
Wed Jul 1 23:40:08 2020 INFO Notify: File "/home1/ljflowers20/Nzbget/scripts/nzb-notify-master/Notify.py", line 169, in
Wed Jul 1 23:40:08 2020 INFO Notify: import six
Wed Jul 1 23:40:08 2020 INFO Notify: ModuleNotFoundError: No module named 'six'
Wed Jul 1 23:40:08 2020 ERROR Script nzb-notify-master/Notify.py with command TestServers failed (terminated with unknown status)
Wed Jul 1 23:40:17 2020 INFO Reloading...
Wed Jul 1 23:40:18 2020 INFO nzbget 21.0 server-mode
Wed Jul 1 23:40:30 2020 INFO Executing script nzb-notify-master/Notify.py with command TestServers
Wed Jul 1 23:40:30 2020 INFO Notify: Traceback (most recent call last):
Wed Jul 1 23:40:30 2020 INFO Notify: File "/home1/ljflowers20/Nzbget/scripts/nzb-notify-master/Notify.py", line 169, in
Wed Jul 1 23:40:30 2020 INFO Notify: import six
Wed Jul 1 23:40:30 2020 INFO Notify: ModuleNotFoundError: No module named 'six'
Wed Jul 1 23:40:30 2020 ERROR Script nzb-notify-master/Notify.py with command TestServers failed (terminated with unknown status)

You need to also make sure you have the scripts dependencies installed (found in the requirements.txt file). See the installation instructions. But in short:

 # Pull in dependencies:
pip install -r requirements.txt

That will include your missing six module. 🙂

I will close this ticket off if you don't have any questions! Feel free to open another or ask more here if you need!