2017-07-14 95 views
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包括舊版本。

回答

1

我已經嘗試過自己,並沒有從pygame的模塊,它被稱爲「_view」或「查看」。

我試着在Python 3.5.3和2.7.13控制檯import pygame._viewimport pygame.viewfrom pygame import _viewfrom pygame import view,沒有_view模塊。如果您read the Pygame docs,你就已經發現有在頂部封裝沒有_view模塊。

如果我是你,我只想沒有有IMAO。如果你只是import pygamefrom pygame import *你應該沒問題。