我已经安装了Ubuntu 12.04(精确的穿山甲)和一些软件包PIL。现在,我想使用Pillow,但是不能与PIL同时安装。

我查看了virtualenv,但是我不想安装其他软件包。

有没有其他方法可以设置无冲突?

最佳答案

您应该使用以下命令从Git克隆安装Pillow(根据需要选择/opt/pillow):

python setup.py install --prefix /opt/pillow


然后将其包含在您的代码中,

import sys
sys.path.insert(0, "/opt/pillow")


在使用导入Pillow之前

from PIL import Image


这将首先搜索/opt/pillow目录,没有该插入的任何内容将永远不会看到Pillow。

关于python - 安装枕头和PIL,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20017319/

10-12 22:18