-
-
Save guilhermef/297680f457f82fb27b3d to your computer and use it in GitHub Desktop.
Install Thumbor on Ubuntu 15.04
This file contains hidden or 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
# sudo su and run the following | |
sudo aptitude update | |
# install all dependencies | |
sudo aptitude -y install \ | |
python-pip \ | |
python2.7-dev \ | |
libssl-dev \ | |
libcurl4-openssl-dev \ | |
python-numpy \ | |
python-opencv \ | |
libopencv-dev \ | |
libjpeg-dev \ | |
libpng-dev \ | |
libx264-dev \ | |
libass-dev \ | |
libvpx1 \ | |
libvpx-dev \ | |
libwebp-dev \ | |
webp \ | |
gifsicle | |
# install thumbor, will take a while | |
sudo pip install thumbor | |
# set default thumbor config | |
thumbor-config > /etc/thumbor.conf | |
thumbor -c /etc/thumbor.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment