multiple NameErrors on lldb startup, doesn't seem to affect lldb performance

Here is what happens:

prowat% lldb modTS
(lldb) target create “modTS”
Traceback (most recent call last):
File “”, line 1, in
File “/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python/lldb/init.py”, line 98, in
import six
ImportError: No module named six
Traceback (most recent call last):
File “”, line 1, in
NameError: name ‘run_one_line’ is not defined
Traceback (most recent call last):
File “”, line 1, in
NameError: name ‘run_one_line’ is not defined
Traceback (most recent call last):
File “”, line 1, in
NameError: name ‘run_one_line’ is not defined
Traceback (most recent call last):


… (at least 100 repetitions) …


Traceback (most recent call last):
File “”, line 1, in
NameError: name ‘run_one_line’ is not defined
Current executable set to ‘modTS’ (x86_64).
(lldb)

Run this in the terminal:

% pip install six

Let me know if that fixes it.

Greg