Skip to content

Instantly share code, notes, and snippets.

@grenkoca
Last active July 23, 2020 14:57
Show Gist options
  • Select an option

  • Save grenkoca/50eb980d13605efa6d97f73a8c4141df to your computer and use it in GitHub Desktop.

Select an option

Save grenkoca/50eb980d13605efa6d97f73a8c4141df to your computer and use it in GitHub Desktop.
mkdir $HOME/bin
mkdir $HOME/lib
mkdir vips_tmp
cd vips_tmp
wget https://github.com/libvips/libvips/releases/download/v8.10.0-beta1/vips-8.10.0-beta1.tar.gz
tar -xzf vips-8.10.0-beta1.tar.gz
cd vips-8.10.0
./configure prefix=$HOME/
make
make install
cd ../../
rm -rfv vips_tmp
export PATH=$HOME/bin:$HOME/lib/:$PATH
echo "You may need to update your PATH in your environment's .rc file."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment