built-in Labels disappeared kinda

General support for problems installing or using Deluge
Post Reply
User avatar
vonProteus
New User
New User
Posts: 6
Joined: Mon Apr 20, 2020 2:48 pm

built-in Labels disappeared kinda

Post by vonProteus »

i'm using deluge 2.0.3 on mac 10.15.6 with python 3.8
there is no labels menu under RMB in desktop app
in side bar i still have my labels
auto assigning still works as far i know
but i don't see label column and label menu when i click on torrent

i tried enabling and disabling plugin but it didn't help
User avatar
vonProteus
New User
New User
Posts: 6
Joined: Mon Apr 20, 2020 2:48 pm

Re: built-in Labels disappeared kinda

Post by vonProteus »

thank you for your help ^_^
the problem can be fix with installing python3.7

Code: Select all

brew install python@3.7
then you must edit your start file to use python3.7

Code: Select all

vim $(which deluge)
my deluge is localized in /usr/local/bin/deluge
and change

Code: Select all

#!/usr/local/opt/python@3.9/bin/python3.9
# -*- coding: utf-8 -*-
import re
import sys
from deluge.ui.ui_entry import start_ui
if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
    sys.exit(start_ui())
to

Code: Select all

#!/usr/local/opt/python@3.7/bin/python3.7
# -*- coding: utf-8 -*-
import re
import sys
from deluge.ui.ui_entry import start_ui
if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
    sys.exit(start_ui())
so basically it don't work with newer python then 3.7
Post Reply