美文网首页
Realm 插件引起的问题:module importing f

Realm 插件引起的问题:module importing f

作者: 克洛斯贝尔 | 来源:发表于2019-09-28 16:06 被阅读0次

    基本环境: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文件没有写好,导致重复创建的问题。
    问题代码注释解决。

    相关文章

      网友评论

          本文标题:Realm 插件引起的问题:module importing f

          本文链接:https://www.haomeiwen.com/subject/iehbuctx.html