Error installing Pillow on ubuntu 14.04

后端 未结 5 1330
栀梦
栀梦 2021-02-01 12:51

I\'m trying to install Pillow on Ubuntu 14.04 using this command:

pip install Pillow

but the installation fails with this error:



        
5条回答
  •  囚心锁ツ
    2021-02-01 13:21

    The problem was that the package libjpeg-dev was not installed. To solve the problem you should do this:

    sudo apt-get install libjpeg-dev
    

提交回复
热议问题