pysqlite
を使用してシステムから削除しようとしていpip
ます。
私がそうすることは意味がありません:
$ pip uninstall pysqlite
コマンドは機能しましたが、次の点に注意してください。
$ pip freeze
[...]
pysqlite==1.0.1
もう一度やってみましょう
$ pip uninstall pysqlite
Can't uninstall 'pysqlite'. No files were found to uninstall.
いいえ、削除されたようですが、まだ表示されますpip freeze
今、楽しみがやってくる
$ pip install pysqlite
Requirement already satisfied (use --upgrade to upgrade): pysqlite in /usr/lib/python2.6/dist-packages
Cleaning up...
けっこうだ:
$ pip install -U pysqlite
[...]
error: command 'gcc' failed with exit status 1
[...]
Can't roll back pysqlite; was not uninstalled
[...]
わからない。pysqliteをpipアンインストールできないのはなぜですか?