9

我正在尝试使用 cx_freeze 和 esky 构建一个应用程序。它以前工作过(好吧,也许几个月前。从那时起,python 3.5 就出来了)。

我有以下例外:

File "/usr/lib/python3.5/site-packages/esky/util.py", line 578, in compile_to_bytecode
    loader = importlib._bootstrap.SourceLoader()    
AttributeError: module 'importlib._bootstrap' has no attribute 'SourceLoader'

我在用着:

  • Python 3.5.0
  • 来自 pypi 的 Esky 0.9.9(最新)
  • cx_freeze 4.3.4-2

我在 Manjaro (Linux) 上。我不知道问题出在哪里。你能帮我一把吗?

4

4 回答 4

7

我能够通过运行来解决这个问题:

pip3 uninstall setuptools
pip3 install setuptools
于 2019-11-07T17:28:37.837 回答
6

我今天遇到了同样的问题。

在终端中运行以下命令解决了我的问题。

➜  ~ pip install --upgrade pip
➜  ~ pip install --upgrade virtualenvwrapper
➜  ~ mkvirtualenv -p /usr/local/bin/python3 test_env
于 2017-07-11T20:19:17.817 回答
2

嗯,查看源代码可能有一个错误:

if sys.version_info[:2] < (3, 1):
    bytecode = imp.get_magic() + struct.pack("<i", 0)
    bytecode += marshal.dumps(compile(source_code, compile_filename, "exec"))
elif sys.version_info[:2] < (3, 4):
    bytecode = imp.get_magic() + struct.pack("<ii", 0, 0)
    bytecode += marshal.dumps(compile(source_code, compile_filename, "exec"))
else:
    loader = importlib._bootstrap.SourceLoader()    
    code = loader.source_to_code(source_code, '<string>')
    bytecode = importlib._bootstrap._code_to_bytecode(code, mtime=0, source_size=0)

您可以尝试用以下内容替换该行:

loader = importlib._bootstrap_external.SourceLoader()

如果可行,请尝试使用低于 3.5 的版本并在其 github 问题页面中提交错误。

于 2015-10-27T10:49:01.343 回答
1

运行此命令,它将解决您的问题

python3 -m ensurepip --upgrade
于 2021-04-11T09:18:04.940 回答