Forked from guilhermef/gist:297680f457f82fb27b3d
Last active
September 29, 2016 09:39
-
-
Save matthlavacka/430a0d18caccc1a61dd55d2c53928794 to your computer and use it in GitHub Desktop.
Install Thumbor 5.2.1 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 uninstall thumbor | |
sudo pip install thumbor==5.2.1 | |
# 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