30 Apr
2015
30 Apr
'15
5:58 a.m.
Hi Julian On 2015-04-29 09:21:00, Julien Derr <julien.derr@gmail.com> wrote:
ValueError: Could not load "./small.jpg" Please see documentation at: http://pillow.readthedocs.org/en/latest/installation.html#external-libraries
What that document tells you is that you should first install libjpeg, then install (or re-install) PIL, and then the loader should work. Alternatively, you can try: from skimage import io io.imread('./small.jpg', plugin='matplotlib') Other options include: - https://pypi.python.org/pypi/imageio - https://pypi.python.org/pypi/imread Regards Stéfan