基本环境:Xcode11 ,realm-objc-3.18.0
从官方下载了Realm的包,运行 plugin/RealmPlugin.xcodeproj 安装插件后,会报一个奇怪的问题。
error: module importing failed: invalid token (rlm_lldb.py, line 37)
找到
~/Library/Application Support/Realm 下的 rlm_lldb.py 文件
在37行左右
try:
os.makedirs(destination, 0744)
except os.error as e:
# It's fine if the directory already exists
if e.errno != errno.EEXIST:
raise
上述注释掉,问题解决。
本质是官方的python文件没有写好,导致重复创建的问题。
问题代码注释解决。
网友评论