我在 Ubuntu 16.04 LTS 系统上安装了 Python 3.9,除了系统自带的默认 2.7 和 3.5,输入 python3.9 就可以完美调用,也可以使用 pip3.9 命令。
我想从系统中删除它,然后重新安装它,或者甚至改用早期版本的 python。
我已经尝试过sudo apt-get remove python3.9
、sudo apt-get autoremove python3.9
、sudo apt-get purge python3.9
和。似乎都没有效果sudo apt-get remove --purge python3.9
。sudo apt-get autoremove --purge python3.9
当我打电话时,python3.9
它来了:
Python 3.9.0 (default, Nov 14 2020, 00:35:31)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
我该如何解决这个问题?谢谢
答案1
答案2
答案3
在 ubuntu 20.04.2 中我遇到了类似的问题,按照以下步骤修复了 python 依赖项
sudo apt-get clean
sudo apt-get autoremove --purge
sudo apt-get remove python3.9
sudo apt-get autoremove
sudo apt --fix-broken install