Skip to content

Instantly share code, notes, and snippets.

@clusteratlas
Forked from skunkworker/install_vips_ubuntu.sh
Created October 29, 2017 10:36
Show Gist options
  • Save clusteratlas/2f0fbef4fb3ea3e252b3cf42dce46b84 to your computer and use it in GitHub Desktop.
Save clusteratlas/2f0fbef4fb3ea3e252b3cf42dce46b84 to your computer and use it in GitHub Desktop.
Vips 8.5.8 install from source for Ubuntu
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;
@clusteratlas
Copy link
Author

  1. Get raw link
  2. wget rawLink
  3. sudo bash rawLink
  4. vips -v

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment