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
When I try to debug my program from vscode with lldb(windows vscode remote to linux container) , I noticed the ModuleNotFoundError: No module named 'lldb' error in my vscode TERMINAL.
It can be simply reproduced by command line as following:
$ lldb-mi --version
Traceback (most recent call last):
File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'lldb'
Version: GNU gdb (GDB) 7.4
(This is a MI stub on top of LLDB and not GDB)
All rights reserved.
Environment
Debian GNU/Linux 11 (bullseye)
llvm 14 (installed by wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && ./llvm.sh all && apt install -y liblldb-14-dev)
Hi,
When I try to debug my program from vscode with
lldb
(windows vscode remote to linux container) , I noticed theModuleNotFoundError: No module named 'lldb'
error in my vscode TERMINAL.It can be simply reproduced by command line as following:
Environment
wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && ./llvm.sh all && apt install -y liblldb-14-dev
)Even though the error occurs, functions seem work correctly, not sure whether it's just a wrong prompt or a bug.
The text was updated successfully, but these errors were encountered: