半年以来,我一直在使用 PSD-TOOLS 在 13" 笔记本上取得很好的效果(Python 2.7.3)。刚刚尝试在运行 10.8.4 的 Mac 上进行全新安装。
我在http://docs.python-guide.org/en/latest/starting/install/osx/ (Python 版本
使用以下方式安装 Pil:
sudo pip install pil
我所有的 Pil 脚本都可以正常工作。
pip list
显示 PIL (1.1.7) 安装正常。
然后尝试使用以下命令安装 psd-tools:
sudo pip install psd-tools
似乎安装得很好,但是当我运行我的 PSD 脚本时,得到以下信息:
File "/Library/Python/2.7/site-packages/psd_tools/user_api/psd_image.py", line 91, in as_PIL
return self._psd._layer_as_PIL(self._index)
File "/Library/Python/2.7/site-packages/psd_tools/user_api/psd_image.py", line 243, in _layer_as_PIL
return pil_support.extract_layer_image(self.decoded_data, index)
File "/Library/Python/2.7/site-packages/psd_tools/user_api/pil_support.py", line 32, in extract_layer_image
decoded_data.header.depth, get_icc_profile(decoded_data))
File "/Library/Python/2.7/site-packages/psd_tools/user_api/pil_support.py", line 68, in _channels_data_to_PIL
raise Exception("This module requires PIL (or Pillow) installed.")
Exception: This module requires PIL (or Pillow) installed.
有人遇到这个问题吗?