PythonをアンインストールしてもPythonが機能し続けるのはなぜですか?

PythonをアンインストールしてもPythonが機能し続けるのはなぜですか?

Debian 8 jessie では Python を削除しました。

perry@perry:~$ sudo apt-get remove python
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package 'python2.7' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 35 not upgraded.

しかし、どういうわけかターミナルでPythonを起動することはできます。

perry@perry:~$ python
Python 2.7.9 (default, Apr 29 2015, 18:34:06) 
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 

ソースやaptを除く他の場所にはインストールしませんでした。どうやってこれができますか? Pythonを完全に削除するにはどうすればよいですか?

ベストアンサー1

追加のパッケージpython-minimalにはすでにPythonがインストールされていることがわかりました。その場合は、次のことを行う必要があります。

sudo apt-get remove python

だけでなく:

sudo apt-get remove python-minimal

おすすめ記事