Could not find a version that satisfies the requirement win32clipboard报错解决方法

Author: 陌小雨Date: 2022-11-12View: 85

当你运行某些脚本的时候可能会提示:Could not find a version that satisfies the requirement win32clipboard,

聪明的你可能立刻会想到运行pip3 install win32clipboard,但是会发现没有这个包,这是什么原因呢?因为包名不对,我们应该先安装pywin32

执行 pip3 install pywin32即可,如果发现执行很慢很慢的话 可以执行下面命令加速

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pywin32

安装完之后就可以使用win32clipboard了。

这就是提示找不到win32clipboard版本的解决方案。