Created
November 28, 2018 15:39
-
-
Save muratgozel/fdb854885d6a300004430239dd1f5cfb to your computer and use it in GitHub Desktop.
install pillow (python imaging library) on ubuntu 18.04 (bionic)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt update | |
apt install python3-pip -y | |
apt install libjpeg8-dev zlib1g-dev libtiff-dev libfreetype6 libfreetype6-dev libwebp-dev libopenjp2-7-dev libopenjp2-7-dev -y | |
pip3 install pillow --global-option="build_ext" --global-option="--enable-zlib" --global-option="--enable-jpeg" --global-option="--enable-tiff" --global-option="--enable-freetype" --global-option="--enable-webp" --global-option="--enable-webpmux" --global-option="--enable-jpeg2000" |
Works great; thank you very much!
thank you very much!
Thank you! This worked for me.
Thanks you! It worked for me
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you very much!