0

我正在尝试让 Arelle 使用 Python 3.6.9 在 Ubuntu linux 18.04 上工作。

Step-1:(下载Arelle软件):

git clone https://github.com/Arelle/Arelle.git -b lxml

步骤 2 安装 Python LXML:

apt-get install -y python-lxml

步骤 3 安装 Python tk:

由于错误:“没有名为 tkinter 的模块”

...我安装:

apt-get 安装 python3-tk


当需要从终端启动 Arelle 时,我使用:

python3 arelleGUI.pyw

然后我收到以下错误:

Traceback (most recent call last):
  File "arelleGUI.pyw", line 9, in <module>
    from arelle import CntlrWinMain
  File "/tmp3/Arelle/arelle/CntlrWinMain.py", line 22, in <module>
    from arelle import Cntlr
  File "/tmp3/Arelle/arelle/Cntlr.py", line 8, in <module>
    from arelle import ModelManager
  File "/tmp3/Arelle/arelle/ModelManager.py", line 8, in <module>
    from arelle import (ModelXbrl, Validate, DisclosureSystem)
  File "/tmp3/Arelle/arelle/Validate.py", line 9, in <module>
    from arelle import (ModelXbrl, ModelVersReport, XbrlConst, ModelDocument,
  File "/tmp3/Arelle/arelle/ModelVersReport.py", line 9, in <module>
    from arelle import (XbrlConst, XbrlUtil, XmlUtil, UrlUtil, ModelXbrl, ModelDocument, ModelVersObject)
  File "/tmp3/Arelle/arelle/ModelDocument.py", line 9, in <module>
    from arelle import (XbrlConst, XmlUtil, UrlUtil, ValidateFilingText, XmlValidate)
  File "/tmp3/Arelle/arelle/ValidateFilingText.py", line 16, in <module>
    docCheckPattern = re.compile(r"&\w+;|[^0-9A-Za-z`~!@#$%&\*\(\)\.\-+ \[\]\{\}\|\\:;\"'<>,_?/=\t\n\r\m\f]") # won't match &#nnn;
  File "/usr/lib/python3.6/re.py", line 233, in compile
    return _compile(pattern, flags)
  File "/usr/lib/python3.6/re.py", line 301, in _compile
    p = sre_compile.compile(pattern, flags)
  File "/usr/lib/python3.6/sre_compile.py", line 562, in compile
    p = sre_parse.parse(p, flags)
  File "/usr/lib/python3.6/sre_parse.py", line 855, in parse
    p = _parse_sub(source, pattern, flags & SRE_FLAG_VERBOSE, 0)
  File "/usr/lib/python3.6/sre_parse.py", line 416, in _parse_sub
    not nested and not items))
  File "/usr/lib/python3.6/sre_parse.py", line 527, in _parse
    code1 = _class_escape(source, this)
  File "/usr/lib/python3.6/sre_parse.py", line 336, in _class_escape
    raise source.error('bad escape %s' % escape, len(escape))
sre_constants.error: bad escape \m at position 67

我发现这个SO question似乎与这个问题有关。

4

1 回答 1

1

这是 Arelle 中的一个错误,在 Python 3.6 及更高版本中出现。有一个拉取请求,但它仍然开放(自 2017 年 7 月起)。鉴于 Python 3.6 已经发布了很长一段时间,我不知道为什么还没有解决这个问题。

您正在使用lxml陈旧 10 年的分支。所以也许这个错误实际上已经在主分支上修复了(即使拉取请求仍然打开),但在lxml分支上没有。如果您可以选择,请先尝试从 master 安装。

于 2021-06-14T22:44:04.520 回答