ERROR: Cannot uninstall ‘pyzmq’.
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
这种情况下,不能卸载文件,只能强行升级安装包
sudo pip install -U pyzmq(这种方式有时候也不可靠)
不可靠时候采用如下这种方式:
sudo pip3 install --ignore-installed pyzmq (一般会成功
ERROR: Cannot uninstall 'pyzmq'. It is a distutils installed project
最新推荐文章于 2024-07-20 12:47:37 发布
博客指出在卸载‘pyzmq’时出现错误,因它是distutils安装项目,无法准确确定文件归属,只能部分卸载。此时可强行升级安装包,使用‘sudo pip install -U pyzmq’有时不可靠,不可靠时可采用‘sudo pip3 install --ignore-installed pyzmq’,一般会成功。
5万+





