Hi,
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
Even though the error occurs, functions seem work correctly, not sure whether it's just a wrong prompt or a bug.
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.