Raspbian // ImportError:没有名为PIL的模块

时间:2019-03-08 21:39:42

标签: pip python-imaging-library

我为这个错误而疯狂。我的脚本曾经可以正常工作,但是尝试安装domoticz插件时出现了错误,现在我收到了此消息

ImportError:没有名为PIL的模块

我尝试了所有在这里找到的所有方法来解决它,但到目前为止还没有运气。

2 个答案:

答案 0 :(得分:0)

Requirement already satisfied: pillow in /home/pi/.local/lib/python2.7/site-packages (5.4.1)

答案 1 :(得分:0)

在具有Raspbian GNU / Linux 9(拉伸)的Raspberry Pi 3B +上:

  1. 我已经在终端中输入以下行来将Python 3.5升级到Python 3.6:

    wget https://github.com/jjhelmus/berryconda/releases/download/v2.0.0/Berryconda3-2.0.0-Linux-armv7l.sh
    

    然后:

    chmod +x Berryconda3-2.0.0-Linux-armv7l.sh
    

    然后:

    ./Berryconda3-2.0.0-Linux-armv7l.sh
    

    然后重新启动Raspberry Pi。

  2. 我通过在终端中键入以下行来安装libjpeg-dev:

    sudo apt-get install libjpeg-dev
    
  3. 最后,我通过在终端中键入以下行来安装枕头库:

    python -m pip install pillow
    

最后,“没有名为'pil'的模块”消息消失了。