从 Ubuntu 18.04 中删除 Python 2.7.15rc1 是否安全?

从 Ubuntu 18.04 中删除 Python 2.7.15rc1 是否安全?

我一拿到笔记本电脑就立即将其从 Ubuntu 16.04 升级到了 Ubuntu 18.04,并且我没有使用 Python 2。

我将其移除是否安全?

我的终端显示默认版本为Python 3.7.3

答案1

跑步

apt purge -s python2.7

其中-s模拟了将要发生的情况。

并亲眼看看您还会失去什么。

在我的系统 Kubuntu 18.04 上,我看到的是:

The following packages were automatically installed and are no longer required:
  gir1.2-appindicator3-0.1 gir1.2-gtk-vnc-2.0 gir1.2-keybinder-3.0 gir1.2-libosinfo-1.0 gir1.2-libvirt-glib-1.0 gir1.2-spiceclientglib-2.0
  gir1.2-spiceclientgtk-3.0 gir1.2-vte-2.91 libgovirt-common libgovirt2 libgtk-vnc-2.0-0 libgvnc-1.0-0 libkeybinder-3.0-0 libphodav-2.0-0
  libphodav-2.0-common libspice-client-glib-2.0-8 libspice-client-gtk-3.0-5 libusbredirhost1 libvirt-glib-1.0-0 spice-client-glib-usb-acl-helper
  syslinux-common virt-viewer xsltproc
Use 'apt autoremove' to remove them.
The following packages will be REMOVED:
  boot-repair* boot-sav* boot-sav-extra* glade2script* kubuntu-settings-desktop* python* python-asn1crypto* python-cairo* python-certifi*
  python-cffi-backend* python-chardet* python-cryptography* python-dbus* python-enchant* python-enum34* python-gi* python-gi-cairo*
  python-gobject* python-gobject-2* python-gtk2* python-gtkspellcheck* python-idna* python-ipaddr* python-ipaddress* python-libvirt*
  python-libxml2* python-libxslt1* python-mutagen* python-openssl* python-pkg-resources* python-psutil* python-qt4-dbus* python-requests*
  python-six* python-urllib3* python-xdg* python2.7* ranger* recoll* terminator* trash-cli* virt-manager* virtinst* zim*
0 upgraded, 0 newly installed, 44 to remove and 0 not upgraded.

 

我不会删除python2.7


进一步研究一下,可以通过查看以下内容来了解​​ Ubuntu 18.04 的全新安装(而不是从早期版本升级)中存在的内容/var/log/installer/initial-status.gz.我有这样一个系统。

从终端窗口运行:

$ zgrep "Package: python2.7" /var/log/installer/initial-status.gz

搜索结果为空,表示没有包含字符串的包python2.7已安装。


就您而言,由于您从 16.04 升级到 18.04:

  • 如果你有python-2-7-15rc1在您的系统上,这意味着它作为升级的一部分从以前的系统中保留下来,或者您随后安装了依赖于它的软件。

  • 不管怎样,删除这样的包在 18.04是安全的,但需要注意的是,您在 (a) 使用以前的系统时(升级之前)或 (b) 升级之后安装的依赖于它的程序可能会被删除。

  • 请记住,在 18.04 的生命周期中,如果你安装了类似口径或者瘸子或者种类或者虚拟管理器,这样做将带来python2.7后退。

相关内容