virtualbox를 제거하는 중 오류가 발생했습니다.

virtualbox를 제거하는 중 오류가 발생했습니다.

이 가상 박스 오류로 인해 어떤 패키지도 설치할 수 없습니다. 그래서 이 명령을 시도했지만 동일한 오류도 발생했습니다.

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)

답변1

다음 명령을 사용하여 다시 설치해 보십시오.

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

python2.7Python 3.x 대신 에 다시 연결합니다.

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

답변2

/usr/bin/pythonPython 3이 아닌 Python 2.7에 연결되어 있는지 확인하세요 .

그래서

/usr/bin/python --version

Python 2.7.12와 같은 결과가 나와야 합니다.

관련 정보