I upgraded to texlive 2017 but had some issues with it and therefore wanted to go back to the 2015 version. I removed it with sudo apt-get purge --auto-remove texlive*
but it did not seem to remove everything. When I try sudo apt-get install texlive
I get the following error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies.
libosgi-compendium-java : Depends: libgeronimo-jpa-2.0-spec-java but it is not going to be installed
texlive : Depends: texlive-latex-recommended (>= 2015) but it is not going to be installed
Depends: texlive-latex-base (>= 2015) but it is not going to be installed
Depends: texlive-fonts-recommended (>= 2015) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
I then tried to follow the steps explained in this post but it did not help in this situation. Any ideas?
Thanks in advance!
aptitude
. This tool makes one or more suggestions of which packages upgrade or downgrade to solve the conflicts, and if you accept one of them, it performs the changes. There are many questions showing other solutions for held packages. – Jaime Oct 16 '17 at 14:39aptitude install texlive
fixed the problem. Thanks! – jan1892 Oct 16 '17 at 15:05