-
-
Save chrishaff/83b0a3b621c3301ecc32 to your computer and use it in GitHub Desktop.
Install Thumbor on Ubuntu 14.04 includes python-opencv for face/feature detection. Don't forget to enable the detectors https://github.com/thumbor/thumbor/wiki/Enabling-detectors.
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 apt-get update && \ | |
sudo apt-get -y upgrade && \ | |
# install all dependencies | |
sudo apt-get -y install \ | |
build-essential \ | |
checkinstall \ | |
gcc \ | |
python \ | |
python-dev \ | |
libpng12-dev \ | |
libtiff5-dev \ | |
libpng-dev \ | |
libjasper-dev \ | |
libwebp-dev \ | |
libcurl4-openssl-dev \ | |
python-pgmagick \ | |
libmagick++-dev \ | |
graphicsmagick \ | |
libopencv-dev \ | |
python-pip \ | |
python-opencv && \ | |
# install thumbor, will take a while | |
sudo pip install pycurl numpy thumbor && \ | |
# set default thumbor config | |
thumbor-config > /etc/thumbor.conf && \ | |
read -d "" ThumborUpstart <<"EOF" | |
description "Thumbor image manipulation service" | |
author "Jason Ormand <[email protected]>" | |
start on startup | |
stop on shutdown | |
exec thumbor -c /etc/thumbor.conf | |
post-start script | |
PID=`status thumbor | egrep -oi '([0-9]+)$' | head -n1` | |
echo $PID > /var/run/thumbor.pid | |
end script | |
post-stop script | |
rm -f /var/run/thumbor.pid | |
end script | |
EOF | |
sudo echo "$ThumborUpstart" > /etc/init/thumbor.conf && \ | |
sudo chmod 755 /etc/init/thumbor.conf && \ | |
init-checkconf /etc/init/thumbor.conf && \ | |
initctl reload-configuration && \ | |
sudo service thumbor start && \ | |
echo "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment