I accidentally did apt-get remove python3. I tried sudo apt-get install ubuntu-desktop
but it shows
The following packages have unmet dependencies:
aptdaemon : Depends: python3-aptdaemon (= 1.1.1+bzr982-0ubuntu14.1) but 1.1.1+bzr982-0ubuntu14 is to be installed
Whatever solution i try it says the above error. Please someone help me.
EDIT
I tried sudo -i python3-aptdaemon.deb
.But it is showing
/var/lib/dpkg/tmp.ci/prerm: 6: /var/lib/dpkg/tmp.ci/prerm: py3clean:
Too many levels of symbolic links dpkg: error processing archive
./python3-aptdaemon.gtk3widgets_1.1.1+bzr982-0ubuntu14_all.deb (-install): subprocess new pre-removal script returned error exit status 2
/var/lib/dpkg/info/python3-aptdaemon.gtk3widgets.postinst: 6:
/var/lib/dpkg/info/python3-aptdaemon.gtk3widgets.postinst: py3compile: Too
many levels of symbolic links
Whenever I try to install any .deb file it says
python3-all depends on python3 (= 3.5.1-3); however:
Package python3 is not configured yet.
apt-get update --fix-missing
Ref: http://www.iasptk.com/ubuntu-fix-broken-package-best-solution/ – EODCraft Staff Sep 17 '19 at 06:12Depends: python3-aptdaemon (= 1.1.1+bzr982-0ubuntu14.1) but 1.1.1+bzr982-0ubuntu14 is to be installed
when I doapt-get install ubuntu-desktop
– user-2147482338 Sep 17 '19 at 06:23--fix-missing
likeinstall
, none work? Ref: https://askubuntu.com/questions/462690/what-does-apt-get-fix-missing-do-and-when-is-it-useful/462751 – EODCraft Staff Sep 17 '19 at 06:29python3
, tools that use or require it will have issues. I would usewget
to download the .deb files you need and usedpkg
to install them. This will mark them as manually installed, which if it worries you, you could always useapt-mark
to reverse but I don't see that it matters. fyi: you may find yourself needing towget
multiple files to install (apt
tools will do this for you automatically,dpkg
won't) – guiverc Sep 17 '19 at 06:35sudo dpkg -i /path/to/deb/file
. But it shows/var/lib/dpkg/info/python3-aptdaemon.postinst: 6: /var/lib/dpkg/info/python3-aptdaemon.postinst: py3compile: Too many levels of symbolic links
– user-2147482338 Sep 17 '19 at 07:29/var/lib/dpkg/info/python3-aptdaemon.postinst: 6: /var/lib/dpkg/info/python3-aptdaemon.postinst: py3compile: Too many levels of symbolic links
– user-2147482338 Sep 17 '19 at 08:12