【问题标题】:Can't import pygame in sublime text on m1 mac无法在 m1 mac 上以 sublime 文本导入 pygame
【发布时间】:2021-12-13 17:55:57
【问题描述】:

我正在尝试安装 pygame 以在我的 m1 mac 上使用。 我正在尝试仅测试导入模块:import pygame,但不断出现错误。

我发现 pygame 是为 python 3 安装的,所以我将构建模式切换到了 sublime text 中的 python 3。我不断收到此错误:

  File "/Users/username/Documents/python_projects/games/test/test.py", line 1, in <module>
    import pygame
  File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/pygame/__init__.py", line 81, in <module>
    from pygame.base import * # pylint: disable=wildcard-import; lgtm[py/polluting-import]
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/pygame/base.cpython-39-darwin.so, 2): Symbol not found: _SDL_DestroyWindow
  Referenced from: /Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/pygame/base.cpython-39-darwin.so
  Expected in: flat namespace
 in /Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/pygame/base.cpython-39-darwin.so
[Finished in 0.1s with exit code 1]
[cmd: ['python3', '-u', '/Users/username/Documents/python_projects/games/test/test.py']]
[dir: /Users/username/Documents/python_projects/games/test]
[path: /Library/Frameworks/Python.framework/Versions/3.9/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin]

非常感谢任何帮助

【问题讨论】:

    标签: python macos pygame sublimetext apple-m1


    【解决方案1】:

    您需要安装 SDL

    下载here

    获取“Mac OS X"SDL2-2.0.16.dmg"runtime

    【讨论】:

    • 嘿,谢谢。我下载并安装了它,不幸的是我仍然遇到同样的错误
    • 当我打印 sys.path 时,我在其中看不到 SDL。怎么弄进去?
    • 我无法按照该指南的 mac os 部分进行操作。我不确定CC=/where/i/cloned/SDL/build-scripts/clang-fat.sh ../configure 是什么意思,我没有clang-fat.sh 文件。
    • Pygame 轮子带有 SDL 及其所有其他 C 依赖项。如果您尝试从源代码编译,这不是一个坏主意,因为 M1 Mac 没有轮子,您可以使用 brew 安装 deps。见pygame.org/wiki/MacCompile
    • 谢谢。我按照您链接中的步骤进行操作,一切都成功了,但我仍然在 sublime text 中遇到同样的错误
    猜你喜欢
    • 1970-01-01
    • 2020-01-07
    • 2022-12-30
    • 2019-04-20
    • 2017-06-19
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-07-04
    相关资源
    最近更新 更多