I have Ubuntu 12.04 with Evince 3.4.0. This version of Evince has some bugs (in particular showing patterns) that are fixed in the version 3.8.0. Does anyone know if there is some repository to have Evince up to date? I would prefer this option (repository) but if this can not be done I would accept also a manual installation of the up to date version.
3 Answers
I had Evince 3.6.1. The way I upgraded, I just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
sudo add-apt-repository ppa:gnome3-team/gnome3
sudo apt-get update
sudo apt-get install evince
Below are before and after images.
Keep in mind that the current stable release is 3.6.1.
Or use Synaptic. If not installed, you can install it by, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
sudo apt-get install synaptic
Edit
Evince for 12.04 is not available in the repo anymore. its only available for 12.10, and 13.04. To get it for other Ubuntu versions, check here or here.
If you try to install via pre-compiled binaries you can end up breaking your system because of the depencies.
I have lately tackled the same problem and the only way I could solve it was to download the latest version of Evince (in my case it was 3.26) and compile it manually. Luckily, there's a guide to doing here:
./configure --prefix=/usr --enable-compile-warnings=minimum --enable-introspection --disable-static && make
In my case I had to manually install 6 extra packages (all in the repo) to successfully run the .configure
command, but nothing google can't help.
Since this might be useful for Ubuntu users, which are doomed to use a very out-of-date version of Evince, and for the sake of completion, here are the packages I had to install in my Linux Mint 18.2 in order to compile:
libxml2-dev
libsecret-1-dev
libnautilus-extension-dev
gobject-introspection-dev
or libgirepository1.0-dev
libpoppler-glib-dev
itstool

- 364
-
After running
./configure
andmake
, we must runsudo install
or, my recommendation,checkinstall
in order to have full control of the installed package via thedpkg
front end. – loved.by.Jesus Jan 16 '21 at 18:58
You can try the GNOME3 launchpad repository.
To add it, open a terminal and enter sudo apt-add-repository ppa:gnome3-team/gnome3 && sudo apt-get update
.
But be aware that this will upgrade (if you do sudo apt-get upgrade
) all the gnome related packages.

- 1,567
- 12
- 19
-
I added the repository, update and upgrade but evince is still the 3.4.0 version one... – Red Jun 21 '13 at 10:39
-
1For Precise it seems that only Gnome 3.4 is available. You can try to install evince from Quantal (12.10)... – Manuel Jun 21 '13 at 11:16
evince
is no longer in this repository. – Serge Stroobandt Jun 07 '14 at 16:38