Python 2.7 не будет импортировать подушку / pygame - PullRequest
0 голосов
/ 04 января 2019

Оба

from PIL import Image
from pygame import *

возврат ImportError: No module named PIL / ImportError: No module named pygame

У меня установлены оба пипа, и они показывают, когда их спрашивают:

C:\Users\User>pip show pillow
Name: Pillow
Version: 5.4.0
Summary: Python Imaging Library (Fork)
Home-page: http://python-pillow.org
Author: Alex Clark (Fork Author)
Author-email: aclark@aclark.net
License: Standard PIL License
Location: c:\python27\lib\site-packages
Requires:
Required-by:

C:\Users\User>pip show pygame
Name: pygame
Version: 1.9.4
Summary: Python Game Development
Home-page: https://www.pygame.org
Author: Pete Shinners, Rene Dudfield, Marcus von Appen, Bob Pendleton, others...
Author-email: pygame@seul.org
License: LGPL
Location: c:\python27\lib\site-packages
Requires:
Required-by:

PIL также не установлен:

C:\Users\User>pip uninstall PIL

Пропуск PIL, поскольку он не установлен.

Использование Python 2.7.13

...