0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

コマンドラインからpygameバージョンを調べる

Posted at

以下を実行するとよい

python -c "import pygame; print(pygame.version.vernum);"
python3 -c "import pygame; print(pygame.version.vernum);"
$ python -c "import pygame; print(pygame.version.vernum);"
pygame 1.9.4
Hello from the pygame community. https://www.pygame.org/contribute.html
(1, 9, 4)
$ python3 -c "import pygame; print(pygame.version.vernum);"
pygame 1.9.4
Hello from the pygame community. https://www.pygame.org/contribute.html
(1, 9, 4)
0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?