-
-
Save WaYdotNET/26d95fffeff6ed4e5b7ed16c41a921dc to your computer and use it in GitHub Desktop.
Install Thumbor on Ubuntu 15.04
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
# 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