Reputation: 803
I'm trying to install win32clipboard
but for some reason says :
No module named win32clipboard
and when tried pip install win32clipboard
I get :
Could not find a version that satisfies the requirement win32clipboard (from versions: ) No matching distribution found for win32clipboard
I've python 3.7, and installed pypiwin32 through pip, still not working.
Any idea?
Upvotes: 9
Views: 25857
Reputation: 241
win32clipboard
is part of a package called pywin32
. You can install pywin32 by doing the following:
pip install pywin32
then you should be able to import win32clipboard:
import win32clipboard
at least this worked for me :D
Upvotes: 24