本文介绍了为什么我会得到ImportError:没有名为'PIL'的模块?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

import sys
from PIL import Image

 ........
MY_IMAGE = Image.open(sys.argv[1]).convert('1')

我应该先指定目录吗?我也尝试过:

Should I first specify directory? I also tried:

  import Image
  img = Image.open("/directory/image.jpg")
  img.load()

它没有帮助,我仍然得到ImportError:没有命名的模块'PIL'

It does not help, I still get ImportError: No module named 'PIL'

推荐答案

试试这个链接:
您需要先安装PIL

Try this link: http://www.youtube.com/watch?v=ssQAFIQ4oBUYou need to install PIL first

这篇关于为什么我会得到ImportError:没有名为'PIL'的模块?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 20:14