janelia-flyem / gala

Automatic segmentation of electron microscopy volumes
BSD 3-Clause "New" or "Revised" License
76 stars 29 forks source link

Image library import needs updating for Fedora 19+ #36

Closed pmbuko closed 10 years ago

pmbuko commented 10 years ago

Line 12 of gala/imio.py does not work correctly on Fedora 19 and later. The Python Imaging Library package included in the Fedora repository, python-imaging, has been replaced by python-pillow. This is a drop-in replacement with one exception:

You can no longer use

import Image

but must instead use

from PIL import Image