如何在Ubuntu上安装python映像库(PIL)?
我试着做
sudo apt-get install python-imaging
但是现在当我运行python selftest.py(我从http://pythonware.com/products/pil/网站上的某个地方获得的脚本)时,我得到了(除其他警告消息外):
...
*** JPEG support not installed
*** ZLIB (PNG/ZIP) support not installed
...
*** 1 tests of 57 failed.
我是否以某种方式弄乱了PIL-我该如何解决?
PIL可能还不错,但是“ selftest.py”并不是检查PIL是否正确安装的正确程序-我还能如何判断PIL是否正确安装?
(我正在使用Ubuntu 12.04 LTS“ Precise Pangolin”)。
(我最终想要做的是在一些python代码中添加2D条码生成器,而我发现所有用python编写的2D条码生成器似乎都使用了PIL。)
sudo apt-get install python-pil
还是sudo apt-get install python3-pil
。
sudo apt-get install python-pil
我在raspbian上为我工作。