Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install libvips using supported release instead of git source #26

Open
donlzx opened this issue Aug 8, 2015 · 2 comments
Open

Install libvips using supported release instead of git source #26

donlzx opened this issue Aug 8, 2015 · 2 comments

Comments

@donlzx
Copy link

donlzx commented Aug 8, 2015

I was install vips on a remote server running Debian linux. At first I was compiling libvips from Git source according to README.md, but it took me a lot of time to download the full Git repo and then fix package dependence issues. It also required installing of many GTK packages, which is a concern for the server.

Later, I found out a better way is to just download the supported libvips release from http://www.vips.ecs.soton.ac.uk/supported/current/. Install only a small number of packages and everything was OK. And this method works for both Debian and Ubuntu linux.

Install packages for Ubuntu:

sudo apt-get install build-essential libjpeg-turbo8-dev libpng12-dev

Install packages for Debian:

sudo apt-get install build-essential libjpeg62-turbo-dev libpng12-dev

Make and install libvips

wget http://www.vips.ecs.soton.ac.uk/supported/current/vips-8.0.2.tar.gz
tar xf vips-8.0.2.tar.gz
cd vips-8.0.2

./configure --enable-debug=no --without-python --without-fftw --without-libexif \
  --without-libgf --without-little-cms --without-orc --without-pango --prefix=/usr
make
sudo make install
sudo ldconfig
@yalay
Copy link

yalay commented Feb 2, 2016

@pinglamb
Copy link
Contributor

pinglamb commented Apr 6, 2016

It is vips-8.2.3 now. But I found that the supported release version doesn't support giflib yet.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants