安裝Pygame(Python3.6,windows)
12-11
打開網址:https://pypi.python.org/pypi/Pygame/1.9.3
下載對應版本:
如果版本不對,會出現如下報錯信息:
D:Pythonsoftware>python -m pip install --user pygame-1.9.2-cp35-cp35m-win32.whl
pygame-1.9.2-cp35-cp35m-win32.whl is not a supported wheel on this platform.
安裝:CMD窗口cd到安裝文件所在路徑,執行以下命令,進行安裝
python -m pip install --user pygame-1.9.3-cp36-cp36m-win_amd64.whl
D:Pythonsoftware>python -m pip install --user pygame-1.9.3-cp36-cp36m-win_amd64.whl
Processing d:pythonsoftwarepygame-1.9.3-cp36-cp36m-win_amd64.whl
Installing collected packages: pygame
Successfully installed pygame-1.9.3
驗證pygame是否安裝:
>>> import pygame
>>> pygame.ver
1.9.3
>>>
這時候在Eclipse中還不能使用,使用的時候會報錯
Unresolved import: pygame
需要把 pygame 導入到Eclipse中:windows-->Preferences
推薦閱讀: