无法卸载 chardet
Cannot uninstall chardet
我一直在尝试使用 pip 卸载 chardet,但出现以下错误:
"Cannot uninstall 'chardet'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall."
我的pip版本是10.0.0,python2.7.14,Ubuntu14.04.
chardet 的位置可以通过 运行 在 python 控制台中的以下命令来确定。
>>> import chardet
>>> print chardet.__file__
/usr/lib/python2.7/dist-packages/chardet/__init__.pyc
然后只需手动删除以下文件夹/*.egg-info 文件即可。
rm /usr/lib/python2.7/dist-packages/chardet-<your-version>.egg-info
rm -r /usr/lib/python2.7/dist-packages/chardet
我一直在尝试使用 pip 卸载 chardet,但出现以下错误:
"Cannot uninstall 'chardet'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall."
我的pip版本是10.0.0,python2.7.14,Ubuntu14.04.
chardet 的位置可以通过 运行 在 python 控制台中的以下命令来确定。
>>> import chardet
>>> print chardet.__file__
/usr/lib/python2.7/dist-packages/chardet/__init__.pyc
然后只需手动删除以下文件夹/*.egg-info 文件即可。
rm /usr/lib/python2.7/dist-packages/chardet-<your-version>.egg-info
rm -r /usr/lib/python2.7/dist-packages/chardet