1

我对 python 和 ruby​​ 都很陌生。

我创建了一个 python 脚本来导入它的依赖项,如下所示:

import sys
sys.path.append("/usr/share/anki")
from anki import Collection
from anki.importing import TextImporter

如何在 RubyPython 中实现相同的功能?除其他外,我尝试过:

RubyPython.start

sys = RubyPython.import("sys")
sys.path.append("/usr/share/anki")
Collection = RubyPython.import("anki.Collection")
TextImporter = RubyPython.import("anki.importing.TextImporter")

RubyPython.stop

这给了我一个错误:`import': AttributeError: 'module' object has no attribute 'argv' (RubyPython::PythonError)对于 anki.Collection 导入的行。

我也尝试过这样的事情:

RubyPython.start

sys = RubyPython.import("sys")
sys.path.append("/usr/share/anki/anki")
Collection = RubyPython.import("collection")
TextImporter = RubyPython.import("anki.importing.TextImporter")

RubyPython.stop

这给了我一个错误:`import': ImportError: No module named anki.lang (RubyPython::PythonError)对于集合导入的行。从anki 的源代码可以看出,这是在 collection.py 文件中导入的第一件事。

4

1 回答 1

1

sys.argv嵌入了 Python 解释器,因此某些特定于进程的位(例如,不可用)是有意义的。

这是一个没有 ruby​​ 的快速测试:

In [1]: import sys

In [2]: del sys.argv

In [3]: sys.path.append("anki")

In [6]: import anki.Collection
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-6-ff326ec5c6ff> in <module>()
----> 1 import anki.Collection

/dima/anki/anki/__init__.py in <module>()
     32 
     33 version="2.0.16" # build scripts grep this line, so preserve formatting
---> 34 from anki.storage import Collection
     35 __all__ = ["Collection"]

/dima/anki/anki/storage.py in <module>()
      4 
      5 import os, copy, re
----> 6 from anki.lang import _
      7 from anki.utils import intTime, json
      8 from anki.db import DB

/dima/anki/anki/lang.py in <module>()
    103 
    104 if not currentTranslation:
--> 105     setLang("en_US", local=False)

/dima/anki/anki/lang.py in setLang(lang, local)
     82 def setLang(lang, local=True):
     83     trans = gettext.translation(
---> 84         'anki', langDir(), languages=[lang], fallback=True)
     85     if local:
     86         threadLocal.currentLang = lang

/dima/anki/anki/lang.py in langDir()
     75         os.path.abspath(__file__)), "locale")
     76     if not os.path.isdir(dir):
---> 77         dir = os.path.join(os.path.dirname(sys.argv[0]), "locale")
     78     if not os.path.isdir(dir):
     79         dir = "/usr/share/anki/locale"

AttributeError: 'module' object has no attribute 'argv'

sys.argv理想情况下,您的代码不应依赖sys.argv.

  • 如果您想要您的代码/资源目录,请os.path.dirname(__file__)改用 (*)

  • 如果您确实需要,请在导入模块之前sys.argv将假数组注入。sys

(*)请记住,Python 代码也可以以 zip 的形式发布,在这种情况下,您甚至没有传统意义上的目录。

于 2013-11-05T14:37:03.570 回答