简体   繁体   中英

how to install win32clipboard

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?

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM