1、错误
Cannot uninstall 'pywin32'. 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.
image.png
2、解决
(1)先通过命令查看是否安装了这个插件,可以看到我的版本是221
pip list
查看安装包
(2)然后找到对应该包的存放目录【Python36\Lib\site-packages】
image.png找到相关的文件直接删除,当然你不放心的话可以备份到别的地方,此处注意,我的文件夹内这些文件我是都删除了,如果你的没有这些版本,可以不必参照我的,因为你会有疑问,‘部分文件我没有’
image.png(3)重新安装,安装后新版本号是227
pip install docker
image.png
3、总结
一般遇到pip 相关的问题 先从版本问题上考虑一下,首先这个包是否存在,第二个 安装包是否版本匹配,这是最常规的思路,这样可以节省搜索问题的时间
No module named 'pywin32_bootstrap'
这个问题也是同样的解决方案,你可以试一下
网友评论