当我打开终端并键入“swift”时,会发生导入错误
Air-zyx:~ zhangyongxu$ swift
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python/lldb/__init__.py", line 98, in <module>
import six
ImportError: No module named six
这是我的python版本。
Air-zyx:~ zhangyongxu$ python --version
Python 3.6.4 :: Anaconda, Inc.
我已经下载了“六”模块,但它仍无法正常工作。
答案 0 :(得分:0)
像这样运行它:PATH=/usr/bin:$PATH swift
,以便选择正确的系统Python。