首页 > 学院 > 开发设计 > 正文

Mac安装PIL模块

2019-11-14 09:00:04
字体:
来源:转载
供稿:网友

Mac安装PIL模块

执行命令:
sudo easy_install -f http://www.pythonware.com/PRoducts/pil/ Imaging如果出现错误,则执行命令xcode-select --install,然后重新进行上一步,具体错误如下:

  /applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/tk.h:78:11: fatal error: 

        'X11/Xlib.h' file not found

  #       include <X11/Xlib.h>

 

再安装Pillow模块即可:
sudo pip install -U Pillow测试抓取屏幕:复制代码
from PIL import ImageGrabdef grab_image(addr):    im = ImageGrab.grab()    im.save(addr,"jpeg")if __name__ == "__main__":    grab_image("test.jpeg")
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表