每次在MacOS上启动lldb时,都会出现以下错误。
<div class="bg bg1">
<button class="button">Text</button>
</div>
<div class="bg bg2">
<button class="button">Text</button>
</div>
我检查了所有的文件和名称。
我不知道是什么引起了这个问题。
有什么想法吗?
答案 0 :(得分:1)
要在lldb中使用系统Python,但在其他所有方面继续使用Homebrew python,请将此shell脚本另存为~/.local/bin/lldb
:
#!/bin/sh
unset PYTHONPATH
export PATH=/usr/bin:$PATH
exec lldb "$@"
然后chmod +x ~/.local/bin/lldb
使其可执行。确保~/.local/bin
位于您的PATH
中,并且位于/usr/bin
系统所在的lldb
之前。