0
當我運行進口pygame._view失敗
python -c "import pygame._view"
我得到以下錯誤:
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named _view
我有蟒蛇2.7.13和1.9.3的Pygame ---當我運行
pip show pygame
我得到以下
Name: pygame
Version: 1.9.3
Summary: Python Game Development
Home-page: http://www.pygame.org
Author: Pete Shinners, Rene Dudfield, Marcus von Appen, Bob Pendleton, others...
Author-email: [email protected]
License: LGPL
Location: c:\python27\lib\site-packages
Requires:
是_view模塊棄用在某一點?我的應用程序運行正常,當我拿出import pygame._view
,但我希望能夠建立一個有import pygame._view
包括舊版本。