LoginSignup
1
1

More than 3 years have passed since last update.

PygameがmacOSで動かない問題

Posted at

はじめに

Macでpygameを使ってゲームを開発していた際、pygameが上手く動いてくれなかったのを解決したのでメモ

環境

  • macOS Calatalina 10.15.1
  • Python 3.7.3

解決方法

pygameのバージョンを 2.0.0.dev4 に上げる

2020年4月26日現在、pip install pygame だとpygame1.9.4がインストールされるため、バージョンを指定してインストールする必要がある

$ pip install pygame=2.0.0.dev4

参考

1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1