如果你像我一样头脑发热,执行了如下命令把python3.5 卸载了,哦豁,该你脑壳疼的时候到了。。
。
1) .卸载python3.5
sudo apt-get remove python3.5
2).卸载python3.5以及它的依赖包
sudo apt-get remove –auto-remove python3.5
3).清除python3.5
要想清除python3.5的配置文件和数据文件,执行以下命令:
sudo apt-get purge python3.5
sudo apt-get purge –auto-remove python3.5
网上也有很多资料,如下:
系统启动后,按ctrl+alt+f1进入ftty模式后,输入帐号密码,可以使用命令行重新安装python3.5 +如下几个包,可以进去桌面:
1. sudo apt-get install python3.5
2.sudo apt-get install ubuntu-minimal ubuntu-standard ubuntu-desktop
然后reboot
当你能进去系统后会发现很多地方不对劲,界面问题,状态栏没有,t erminal ,输入法不能用等等
,这个时候教你一个办法可以完美回到卸载前:
1. 查看ubuntu的系统日志,找到dpkg.log
2.找到你卸载python3.5那个时间的LOG COPY 下来,用notepad++ 过滤出remove关键字,这个时候,你就会看到你那段时间卸载的包
3.然后把卸载的这些包全部重新安装,安装完后,reboot ,你会发现跟之前差不多了,接下来设置下输入法等配置就可以了。
过滤包的方法教你们一个办法:
举个例子:行 1401: 2022-03-21 10:38:15 remove ibus:amd64 1.5.11-1ubuntu2.4 <无>
你可以用notepad++ 替换功能,使用下面的替换规则:
1 . 行.*remove 替换为 sudo apt-get install
2. :.*<无> 替换为 空格
然后全部替换完以后就变成了sudo apt-get install ibus ,然后你把替换完成的命令全部copy到终端安装,一次搞定。