macOS 上的pygame 安裝問題
安裝過程中無法找到“SDL.h”頭文件
pygame套件安裝過程中遇到的錯誤源自於找不到「SDL.h」頭檔。這是將 pygame 成功整合到系統中的關鍵元件。
解決方案:
此問題的解決方案包括兩個步驟:
使用macOS套件管理器Homebrew 安裝SDL:
brew install sdl sdl_image sdl_mixer sdl_ttf portmidi
pip install https://bitbucket.org/pygame/pygame/get/default.tar.gz
python -c "import pygame; print(pygame.version)"
[Bitbucket問題139](https://bitbucket.org/pygame/pygame/issue/139/sdlh-not-found-even-thought-it-exists#comment-3822470)
以上是為什麼由於缺少'SDL.h”頭檔而無法在 macOS 上安裝 Pygame?的詳細內容。更多資訊請關注PHP中文網其他相關文章!