** ubuntu 卸载python3.8和依赖后。桌面直接就不能使用了 ** # 卸载python3.8 sudo apt-get remove python3.8 # 卸载python3.5以及它的依赖包 sudo apt-get remove --auto-remove python3.8 亲测可用 Ubuntu系统修改Python软链接 which python sudo rm /usr/bin/python # 创建新的软链接 sudo ln -s /usr/bin/python2.7 /usr/bin/python