Created
September 2, 2017 06:01
-
-
Save skunkworker/c83551c82702eb190a5b980c017670b1 to your computer and use it in GitHub Desktop.
Vips 8.5.8 install from source for Ubuntu
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
cd tmp/; | |
curl -L https://github.com/jcupitt/libvips/releases/download/v8.5.8/vips-8.5.8.tar.gz | tar xz; \ | |
cd vips-8.5.8; \ | |
dpkg --configure -a; \ | |
echo "/usr/local/lib/" >> /etc/ld.so.conf.d/local.conf; \ | |
./configure; \ | |
make; \ | |
sudo make install; |
I'm getting stuck after hours of allowing it to run :/
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since the latest sources of vips for some ubuntu distros are outdated, this installs the latest ones. If you run into an error and have installed from apt-get try removing the older vips install using
sudo apt-get purge libvips42
.