Last active
January 7, 2025 23:08
-
-
Save IaroslavR/cca8170357adebefbe97 to your computer and use it in GitHub Desktop.
install last poppler to Amazon Linux
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
sudo yum install fontconfig fontconfig-devel | |
wget http://downloads.sourceforge.net/project/openjpeg.mirror/1.5.0/openjpeg-1.5.0.tar.gz?r=&ts=1443868025&use_mirror=netcologne | |
tar -xvf openjpeg-1.5.0.tar.gz\?r\= | |
cd openjpeg-1.5.0 | |
./configure | |
make | |
sudo make install | |
cd .. | |
POPPLER='poppler-0.47.0' | |
wget https://poppler.freedesktop.org/$POPPLER.tar.xz | |
tar -xvf $POPPLER.tar.xz | |
cd $POPPLER | |
./configure | |
make | |
sudo make install |
here is what worked for me on Amazon Linux 2
sudo yum groupinstall "Development Tools"
sudo yum install fontconfig fontconfig-devel
wget -O openjpeg-1.5.0.tar.gz '[https://downloads.sourceforge.net/project/openjpeg.mirror/1.5.0/openjpeg-1.5.0.tar.gz?r=&ts=1443868025&use_mirror=netcologne'](https://downloads.sourceforge.net/project/openjpeg.mirror/1.5.0/openjpeg-1.5.0.tar.gz?r=&ts=1443868025&use_mirror=netcologne%27)
tar -xvf openjpeg-1.5.0.tar.gz
cd openjpeg-1.5.0
./configure
make
sudo make install
cd ..
POPPLER='poppler-0.47.0'
wget https://poppler.freedesktop.org/$POPPLER.tar.xz
tar -xvf $POPPLER.tar.xz
cd $POPPLER
./configure
make
sudo make install
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, this really helped me in installing Poppler on Amazon Linux 2.
There were few minor changes that I had to make otherwise it used to get into errors. Adding the updated gist for your consideration for updating this gist.