Ubuntu 18.04.5 LTS:无法安装 Python 3

Ubuntu 18.04.5 LTS:无法安装 Python 3

我想通过以下方式安装 python3(在几天前从一位不再在我们公司工作的员工那里得到的 ubuntu 系统上)

apt install python 3

但它给了我一个错误:

  Traceback (most recent call last):
  File "/usr/lib/python3.6/py_compile.py", line 186, in <module>
    sys.exit(main())
  File "/usr/lib/python3.6/py_compile.py", line 178, in main
    compile(filename, doraise=True)
  File "/usr/lib/python3.6/py_compile.py", line 122, in compile
    source_bytes = loader.get_data(file)
  File "<frozen importlib._bootstrap_external>", line 832, in get_data
FileNotFoundError: [Errno 2] No such file or directory: '/usr/lib/python3.6/__phello__.foo.py'
dpkg: Fehler beim Bearbeiten des Paketes python3.6 (--configure):
 installed python3.6 package post-installation script subprocess returned error exit status 1
dpkg: Abhängigkeitsprobleme verhindern Konfiguration von python3:
 python3 hängt ab von python3.6 (>= 3.6.7-1~); aber:
  Paket python3.6 ist noch nicht konfiguriert.
 dpkg: Fehler beim Bearbeiten des Paketes python3 (--configure):
 Abhängigkeitsprobleme - verbleibt unkonfiguriert

所有“其他”软件包(与 python 无关)都可以安装,并且 apt 可以正常工作。我该怎么办?

相关内容