You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
INFO:__main__:Sentry has been initialised in normal mode INFO:__main__:Root state dir: /home/george/.Tribler INFO:__main__:Running in "normal" mode INFO:tribler_gui:Load logger config: /home/george/.Tribler [PID:1152352] 2022-03-02 11:52:46,927 - INFO - tribler_core.check_os(231) - Check and enable code tracing. Process name: "gui". Log dir: "/home/george/.Tribler" [PID:1152352] 2022-03-02 11:52:46,927 - INFO - tribler_core.check_os(213) - Enable fault handler: "/home/george/.Tribler" [PID:1152352] 2022-03-02 11:52:46,927 - INFO - tribler_core.check_os(48) - Check environment [PID:1152352] 2022-03-02 11:52:46,928 - INFO - tribler_core.check_os(79) - Should kill other Tribler instances [PID:1152352] 2022-03-02 11:52:46,928 - INFO - tribler_core.check_os(87) - Old PID: -1. Current PID: 1152352 [PID:1152352] 2022-03-02 11:52:46,928 - INFO - tribler_core.check_os(53) - Check free space [PID:1152352] 2022-03-02 11:52:47,043 - ERROR <run_tribler:131> __main__.<module>(): No module named 'libtorrent' Traceback (most recent call last): File "/home/george/Documents/TUD/Tribler/tribler-github/src/run_tribler.py", line 102, in <module> from tribler_gui.tribler_window import TriblerWindow File "/home/george/Documents/TUD/Tribler/tribler-github/src/tribler-gui/tribler_gui/tribler_window.py", line 50, in <module> from tribler_gui.debug_window import DebugWindow File "/home/george/Documents/TUD/Tribler/tribler-github/src/tribler-gui/tribler_gui/debug_window.py", line 16, in <module> import libtorrent ModuleNotFoundError: No module named 'libtorrent'
I solved this with pip install libtorrent==1.2.15. Installing the latest version (2.0.5) won't work because of some cpp binding error (their fault).
The text was updated successfully, but these errors were encountered:
To reproduce
INFO:__main__:Sentry has been initialised in normal mode INFO:__main__:Root state dir: /home/george/.Tribler INFO:__main__:Running in "normal" mode INFO:tribler_gui:Load logger config: /home/george/.Tribler [PID:1152352] 2022-03-02 11:52:46,927 - INFO - tribler_core.check_os(231) - Check and enable code tracing. Process name: "gui". Log dir: "/home/george/.Tribler" [PID:1152352] 2022-03-02 11:52:46,927 - INFO - tribler_core.check_os(213) - Enable fault handler: "/home/george/.Tribler" [PID:1152352] 2022-03-02 11:52:46,927 - INFO - tribler_core.check_os(48) - Check environment [PID:1152352] 2022-03-02 11:52:46,928 - INFO - tribler_core.check_os(79) - Should kill other Tribler instances [PID:1152352] 2022-03-02 11:52:46,928 - INFO - tribler_core.check_os(87) - Old PID: -1. Current PID: 1152352 [PID:1152352] 2022-03-02 11:52:46,928 - INFO - tribler_core.check_os(53) - Check free space [PID:1152352] 2022-03-02 11:52:47,043 - ERROR <run_tribler:131> __main__.<module>(): No module named 'libtorrent' Traceback (most recent call last): File "/home/george/Documents/TUD/Tribler/tribler-github/src/run_tribler.py", line 102, in <module> from tribler_gui.tribler_window import TriblerWindow File "/home/george/Documents/TUD/Tribler/tribler-github/src/tribler-gui/tribler_gui/tribler_window.py", line 50, in <module> from tribler_gui.debug_window import DebugWindow File "/home/george/Documents/TUD/Tribler/tribler-github/src/tribler-gui/tribler_gui/debug_window.py", line 16, in <module> import libtorrent ModuleNotFoundError: No module named 'libtorrent'
I solved this with
pip install libtorrent==1.2.15
. Installing the latest version (2.0.5) won't work because of some cpp binding error (their fault).The text was updated successfully, but these errors were encountered: