How to upgrade poppler-utils to latest version?

6,054

This is because Ubuntu focuses on stability, not bleeding edge packages, this means that the software in the repositories can be outdated and you must build it from source yourself.

First remove the current installed version

sudo apt-get purge poppler-utils

Install the required build tools

sudo apt-get install build-essential checkinstall

Run these commands to build and install

wget --directory-prefix=~ poppler.freedesktop.org/poppler-0.40.0.tar.xz
tar -xvzf ~/poppler-0.40.0.tar.xz
cd ~/poppler-0.40.0
./configure
make
sudo checkinstall

Now poppler-0.40.0 is installed on your computer.

Share:
6,054

Related videos on Youtube

Amit Patel
Author by

Amit Patel

Updated on September 18, 2022

Comments

  • Amit Patel
    Amit Patel over 1 year

    My system has poppler-utils v0.24.5. From the official site I found that the latest version is 0.40.0.

    I tried to update it using following command

    sudo apt-get install --only-upgrade poppler-utils

    but it doesn't upgrade and show following message.

    poppler-utils is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 14 not upgraded.

    Can anybody please help me to upgrade to latest version?

  • A.B.
    A.B. over 8 years
  • cl-netbox
    cl-netbox over 8 years
    @markkirby : Another useful answer from you ! :)
  • ohnoplus
    ohnoplus about 7 years
    I think its 'build-essential' rather than 'build-essentials' in the install line, right?
  • Mark Kirby
    Mark Kirby about 7 years
    @ohnoplus Yes it should, well spotted.
  • Ansa211
    Ansa211 about 6 years
    Currently, the latest version that can be installed on Kubuntu 14.04 without a newer version of cmake is poppler-0.59.0. On my system, the tar command works only without the -z switch.