首页 > 编程 > Python > 正文

在Mac OS系统上安装Python的Pillow库的教程

2020-01-04 17:55:48
字体:
来源:转载
供稿:网友

这篇文章主要介绍了在MacOS下安装Python的Pillow库的教程,Pillow库用来对图片进行各种处理操作,需要的朋友可以参考下

今天帮朋友做个python的小工具,发现系统上缺少ptyhon的支持库,返回如下信息

ImportError: No module named PIL

然后就下载安装,因为机器上也没有python的管理工具pip,所以也一并安装

1. 安装pip

 

 
  1. sudo easy_install pip  

pip 安装成功就可以直接安装pil或者pillow

2. 通过命令pip install pil

 

 
  1. pip install Pil  

 

  1. Downloading/unpacking Pil  
  2. Could not find any downloads that satisfy the requirement Pil  
  3. Some externally hosted files were ignored (use --allow-external Pil to allow).  
  4. Cleaning up...  
  5. No distributions at all found for Pil  
  6. Storing debug log for failure in /Users/macbook/Library/Logs/pip.log  

3. 所以就安装pillow
 

  1. pip install --use-wheel Pillow  
  1. Downloading/unpacking Pillow  
  2. Downloading Pillow-2.4.0.zip (6.5MB): 5.0MB downloaded  
  3. Cleaning up...  


弄了会别的回来发现还没有下载完,这叫一个慢呀,于是放弃

4. Git

通过git下载源码地址https://github.com/python-imaging/Pillow

 

 
  1. git clone https://github.com/python-imaging/Pillow.git  

然后开始编译安装

4.1

 

 
  1. python setup.py build_ext -i  

编译完之后会提示运行测试例子,并且发现JPEG support not available

 

 
  1. --------------------------------------------------------------------  
  2. version Pillow 2.4.0  
  3. platform darwin 2.7.5 (default, Aug 25 2013, 00:04:04)  
  4. [GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)]  
  5. --------------------------------------------------------------------  
  6. --- TKINTER support available  
  7. *** JPEG support not available  
  8. *** OPENJPEG (JPEG2000) support not available  
  9. --- ZLIB (PNG/ZIP) support available  
  10. *** LIBTIFF support not available  
  11. --- FREETYPE2 support available  
  12. *** LITTLECMS2 support not available  
  13. *** WEBP support not available  
  14. *** WEBPMUX support not available  
  15. --------------------------------------------------------------------  
  16. To add a missing option, make sure you have the required  
  17. library, and set the corresponding ROOT variable in the  
  18. setup.py script.  
  19.  
  20. To check the build, run the selftest.py script.  

4.2 因为JPEG support not available,运行python selftest.py报告错误

1 tests of 57 failed.

于是只好卸载pillow

可以通过pip命令来卸载

 

 
  1. pip uninstall pillow  
  2. sudo pip uninstall pillow  

 

  1. Password:  
  2. Uninstalling Pillow:  
  3. /Library/Python/2.7/site-packages/Pillow-2.4.0-py2.7-macosx-10.9-intel.egg  
  4. /usr/local/bin/pilconvert.py  
  5. /usr/local/bin/pildriver.py  
  6. /usr/local/bin/pilfile.py  
  7. /usr/local/bin/pilfont.py  
  8. /usr/local/bin/pilprint.py  
  9. Proceed (y/n)? y<br> Successfully uninstalled Pillow <br>  

成功之后需要安装libjpeg的支持

 

 
  1. brew install libjpeg  

安装成功之后重新编译pillow

 

 
  1. --------------------------------------------------------------------  
  2. version Pillow 2.4.0  
  3. platform darwin 2.7.5 (default, Aug 25 2013, 00:04:04)  
  4. [GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)]  
  5. --------------------------------------------------------------------  
  6. --- TKINTER support available  
  7. --- JPEG support available  
  8. *** OPENJPEG (JPEG2000) support not available  
  9. --- ZLIB (PNG/ZIP) support available  
  10. *** LIBTIFF support not available  
  11. --- FREETYPE2 support available  
  12. *** LITTLECMS2 support not available  
  13. *** WEBP support not available  
  14. *** WEBPMUX support not available  
  15. --------------------------------------------------------------------  
  16. python selftest.py  
  17.  
  18. --------------------------------------------------------------------  
  19. Pillow 2.4.0 TEST SUMMARY  
  20. --------------------------------------------------------------------  
  21. Python modules loaded from /Users/macbook/yyang/app-devel-source/python/Pillow/PIL  
  22. Binary modules loaded from /Users/macbook/yyang/app-devel-source/python/Pillow/PIL  
  23. --------------------------------------------------------------------  
  24. --- PIL CORE support ok  
  25. --- TKINTER support ok  
  26. --- JPEG support ok  
  27. *** JPEG 2000 support not installed  
  28. --- ZLIB (PNG/ZIP) support ok  
  29. *** LIBTIFF support not installed  
  30. --- FREETYPE2 support ok  
  31. *** LITTLECMS2 support not installed  
  32. *** WEBP support not installed  
  33. --------------------------------------------------------------------  
  34. Running selftest:  
  35. --- 57 tests passed.  

最后执行安装

 

 
  1. sudo python setup.py install 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表