web-dev-qa-db-ja.com

16.04でPython 2を削除する方法は?

Ubuntuには、16.04で droped Python 2 があります。ただし、アップグレード後も引き続きインストールされます(「廃止されたパッケージ」の一部ではありませんでした)。

Python 2とそのすべての依存関係をきれいに(完全に取り除くために)削除するクリーンな方法はありますか?

apt purgeは進むべき道ですか?

root@ubuntu ~# apt purge python2.7
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
  libnss-ldap
Use 'apt autoremove' to remove it.
The following packages will be REMOVED:
  auth-client-config* ldap-auth-client* ldap-auth-config* libpam-ldap* libsmbclient* ndiff* python* python-bs4* python-chardet* python-crypto* python-dnspython*
  python-html5lib* python-ldb* python-lxml* python-ntdb* python-pkg-resources* python-samba* python-setuptools* python-six* python-talloc* python-tdb* python2.7* samba*
  samba-common-bin* samba-dsdb-modules* samba-libs* samba-vfs-modules* smbclient* winbind*
0 upgraded, 0 newly installed, 29 to remove and 0 not upgraded.
After this operation, 58.4 MB disk space will be freed.
18
WoJ

SambaやVirtualBoxなど、Python2に依存するパッケージがまだたくさんあるので、続行する前にaptが削除したいパッケージをよく見てください。

つかいます

Sudo apt purge python2.7-minimal

python2とそれに依存するすべてを完全に削除します。

26
Florian Diesch