Hi.
This looks really cool but I get this error on a fresh install:
(master *) Source $ python main.py
Traceback (most recent call last):
File "main.py", line 12, in <module>
import userInterface
File "Module/userInterface.py", line 11, in <module>
from PIL import Image,ImageTk
ImportError: cannot import name ImageTk
I'm running on ubuntu (I also get the same error on Fedora 26). The PIL package doesn't have ImageTK. Is there a certain version I need?
(master *) Source $ python --version
Python 2.7.14
(master *) Source $ python
Python 2.7.14 (default, Sep 23 2017, 22:06:14)
[GCC 7.2.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import PIL
>>> help(PIL)
Help on package PIL:
NAME
PIL
FILE
/usr/lib/python2.7/dist-packages/PIL/__init__.py
DESCRIPTION
# The Python Imaging Library.
# $Id$
#
# package placeholder
#
# Copyright (c) 1999 by Secret Labs AB.
#
# See the README file for information on usage and redistribution.
#
PACKAGE CONTENTS
BdfFontFile
BmpImagePlugin
BufrStubImagePlugin
ContainerIO
CurImagePlugin
DcxImagePlugin
DdsImagePlugin
EpsImagePlugin
ExifTags
FitsStubImagePlugin
FliImagePlugin
FontFile
FpxImagePlugin
FtexImagePlugin
GbrImagePlugin
GdImageFile
GifImagePlugin
GimpGradientFile
GimpPaletteFile
GribStubImagePlugin
Hdf5StubImagePlugin
IcnsImagePlugin
IcoImagePlugin
ImImagePlugin
Image
ImageChops
ImageCms
ImageColor
ImageDraw
ImageDraw2
ImageEnhance
ImageFile
ImageFilter
ImageFont
ImageGrab
ImageMath
ImageMode
ImageMorph
ImageOps
ImagePalette
ImagePath
ImageQt
ImageSequence
ImageShow
ImageStat
ImageTransform
ImageWin
ImtImagePlugin
IptcImagePlugin
Jpeg2KImagePlugin
JpegImagePlugin
JpegPresets
McIdasImagePlugin
MicImagePlugin
MpegImagePlugin
MpoImagePlugin
MspImagePlugin
OleFileIO
PSDraw
PaletteFile
PalmImagePlugin
PcdImagePlugin
PcfFontFile
PcxImagePlugin
PdfImagePlugin
PixarImagePlugin
PngImagePlugin
PpmImagePlugin
PsdImagePlugin
PyAccess
SgiImagePlugin
SpiderImagePlugin
SunImagePlugin
TarIO
TgaImagePlugin
TiffImagePlugin
TiffTags
WalImageFile
WebPImagePlugin
WmfImagePlugin
XVThumbImagePlugin
XbmImagePlugin
XpmImagePlugin
_binary
_imaging
_imagingcms
_imagingft
_imagingmath
_imagingmorph
_tkinter_finder
_util
_webp
features
DATA
PILLOW_VERSION = '4.1.1'
VERSION = '1.1.7'
__version__ = '4.1.1'
VERSION
4.1.1
(END)
Hi.
This looks really cool but I get this error on a fresh install:
I'm running on ubuntu (I also get the same error on Fedora 26). The PIL package doesn't have ImageTK. Is there a certain version I need?