Friday, May 10, 2024
 Popular · Latest · Hot · Upcoming
0
rated 0 times [  0] [ 0]  / answers: 1 / hits: 420  / 3 Years ago, sat, august 7, 2021, 7:02:57

I was not able to install any packages due to this virtual box error. So I tried these commands but then also same errors.



sudo apt-get purge virtualbox*

Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
libgsoap8 libqt4-opengl libvncserver1 linux-headers-4.4.0-62
linux-headers-4.4.0-62-generic linux-image-4.4.0-62-generic
linux-image-extra-4.4.0-62-generic linux-signed-image-4.4.0-62-generic
python3-systemd virtualbox-dkms
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
virtualbox*
0 upgraded, 0 newly installed, 1 to remove and 31 not upgraded.
1 not fully installed or removed.
After this operation, 64.1 MB disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 332209 files and directories currently installed.)
Removing virtualbox (5.0.18-dfsg-2build1) ...
File "/usr/bin/pyclean", line 63
except (IOError, OSError), e:
^
SyntaxError: invalid syntax
dpkg: error processing package virtualbox (--purge):
subprocess installed pre-removal script returned error exit status 1
Traceback (most recent call last):
File "/usr/bin/pycompile", line 35, in <module>
from debpython.version import SUPPORTED, debsorted, vrepr,
File "/usr/share/python/debpython/version.py", line 24, in <module>
from ConfigParser import SafeConfigParser
ImportError: No module named 'ConfigParser'
dpkg: error while cleaning up:
subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
virtualbox
E: Sub-process /usr/bin/dpkg returned an error code (1)

More From » apt

 Answers
7

try to reinstall it with the following command:



$ sudo apt-get clean
$ sudo apt-get update
4 sudo apt-get install --reinstall python-minimal python-lockfile


and re-linking it to python2.7 instead of python 3.x.



$ sudo rm /usr/bin/python
$ sudo ln -s /usr/bin/python2.7 /usr/bin/python

[#10304] Monday, August 9, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
leadprogres

Total Points: 298
Total Questions: 114
Total Answers: 139

Location: Samoa
Member since Mon, Nov 8, 2021
3 Years ago
;