“IOError:无效的 Python 安装:无法打开 /usr/lib/python2.7/config/Makefile”配置 python-minimal

“IOError:无效的 Python 安装:无法打开 /usr/lib/python2.7/config/Makefile”配置 python-minimal

我将 Ubuntu 从 17.04 更新到 17.10,然后又更新到 18.04,现在我的 Python 似乎坏了。运行apt-get upgrade返回以下错误:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
 libopencv-highgui3.1 : Depends: libopencv-videoio3.1 (= 3.1.0+dfsg1-1~exp1ubuntu3) but it is not installable
                        Depends: libopencv-imgcodecs3.1 but it is not installable
 libopencv-videostab3.1 : Depends: libopencv-videoio3.1 but it is not installable
 libpython-all-dev : Depends: libpython-dev (= 2.7.14-2ubuntu1) but 2.7.15~rc1-1 is installed
 python : PreDepends: python-minimal (= 2.7.13-2) but 2.7.15~rc1-1 is installed
          Depends: libpython-stdlib (= 2.7.13-2) but 2.7.14-2ubuntu1 is installed
 python-all : Depends: python (= 2.7.15~rc1-1) but 2.7.13-2 is installed
 python-all-dev : Depends: python (= 2.7.15~rc1-1) but 2.7.13-2 is installed
                  Depends: libpython-all-dev (= 2.7.15~rc1-1) but 2.7.14-2ubuntu1 is installed
 python-dev : Depends: python (= 2.7.15~rc1-1) but 2.7.13-2 is installed
 ubuntu-release-upgrader-core : Depends: python3-distupgrade (= 1:18.04.17) but 1:17.10.11 is installed
 ubuntu-release-upgrader-gtk : Depends: python3-distupgrade (= 1:18.04.17) but 1:17.10.11 is installed
 update-manager : Depends: update-manager-core (= 1:18.04.11) but 1:17.10.13 is installed
                  Depends: libgtk3-perl but it is not installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).

运行apt --fix-broken install结果出现如下错误:

Setting up python-minimal (2.7.15~rc1-1) ...
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/site.py", line 563, in <module>
    main()
  File "/usr/local/lib/python2.7/site.py", line 545, in main
    known_paths = addusersitepackages(known_paths)
  File "/usr/local/lib/python2.7/site.py", line 278, in addusersitepackages
    user_site = getusersitepackages()
  File "/usr/local/lib/python2.7/site.py", line 253, in getusersitepackages
    user_base = getuserbase() # this will also set USER_BASE
  File "/usr/local/lib/python2.7/site.py", line 243, in getuserbase
    USER_BASE = get_config_var('userbase')
  File "/usr/local/lib/python2.7/sysconfig.py", line 521, in get_config_var
    return get_config_vars().get(name)
  File "/usr/local/lib/python2.7/sysconfig.py", line 420, in get_config_vars
    _init_posix(_CONFIG_VARS)
  File "/usr/local/lib/python2.7/sysconfig.py", line 288, in _init_posix
    raise IOError(msg)
IOError: invalid Python installation: unable to open /usr/lib/python2.7/config/Makefile (No such file or directory)
dpkg: error processing package python-minimal (--configure):
 installed python-minimal package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
 python-minimal
E: Sub-process /usr/bin/dpkg returned an error code (1)

有人知道如何解决这个问题吗?

答案1

我不知道为什么,但python2.7指向/usr/local/bin/python2.7哪个有版本 2.7.3,而python指向/usr/bin/python2.7哪个有版本 2.7.15。

我只是重新命名了一下/usr/local/bin/python2.7,现在apt-get upgrade可以按预期工作了。

相关内容