web-dev-qa-db-ja.com

Ubuntu 12.04でidle-python2.7を削除する

Ubuntu 12.04でパッケージを更新するときに問題が発生します。

Processing triggers for menu ...
Errors were encountered while processing:
 idle-python2.7
Setting up idle-python2.7 (2.7.3-0ubuntu3.5) ...
Traceback (most recent call last):
  File "/usr/lib/python2.7/compileall.py", line 16, in <module>
    import struct
  File "/usr/lib/python2.7/struct.py", line 1, in <module>
    from _struct import *
ImportError: No module named _struct
dpkg: error processing idle-python2.7 (--configure):
 subprocess installed post-installation script returned error exit status 1

私はそれがidle-python2.7に関連していると信じており、それを削除したい:

Sudo apt-get remove idle-python2.7

それがそれを修正するかどうかを確認しますが、私は私のシステムをひどくするのではないかと思います。

そのパッケージを安全に削除できますか? 「試用版の削除」を実行して、それとともに削除されるものを確認するにはどうすればよいですか?

2
Gabriel

ターミナルから次のコマンドを実行して、その動作を確認してください。

idle-python2.7  

このコマンドは、Python用の統合開発環境(Python-2.7を使用)のIDLEの新しいウィンドウを開きます。 idle-python2.7は単なるアプリケーションであるため、次のように入力して、Ubuntuソフトウェアまたは端末からIDLE(Python-2.7を使用)を削除しても安全です。

Sudo apt-get remove idle-python2.7    
2
karel