在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?
正如Thomas所说,您实际上并没有删除Python-坦白地说,您确实不想删除。这样做会使您的系统无法使用,需要重新安装。
—
约翰
@John:到底什么debian内部依赖于python?我没有运行Ubuntu ...
—
Perry 2015年
什么输出
—
heemayl,2015年
dpkg --get-selections | grep "python2.7"
?
Debian中没有核心程序包依赖于Python。如果
—
史蒂芬·基特
apt
让您无需经过箍就可以卸下包裹,那么这样做是安全的。
which python
说呢?