Last active
July 23, 2020 14:57
-
-
Save grenkoca/50eb980d13605efa6d97f73a8c4141df to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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