7

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?

Omri
  • 673
  • 4
  • 9
  • 25
  • 1
    Possible duplicate of [Trying to install module win32clipboard](https://stackoverflow.com/questions/15310121/trying-to-install-module-win32clipboard) – Azrael Nov 02 '18 at 07:37
  • 2
    it is a part of pywin32 – Azrael Nov 02 '18 at 07:38
  • @TilmanB.akaNerdyyy THANK YOU. All I did is to install pywin32 through pychram. works just fine. – Omri Nov 02 '18 at 13:00

1 Answers1

19

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

Kevin
  • 16,549
  • 8
  • 60
  • 74
Cool School
  • 191
  • 1
  • 4
  • 3
    Could not find a version that satisfies the requirement pywin32 (from versions: ) – sam Dec 17 '19 at 02:53
  • Defaulting to user installation because normal site-packages is not writeable ERROR: Could not find a version that satisfies the requirement pywin32 (from versions: none) ERROR: No matching distribution found for pywin32 [notice] A new release of pip available: 22.1.2 -> 22.2 [notice] To update, run: python.exe -m pip install --upgrade pip Note: you may need to restart the kernel to use updated packages. – CS QGB Jul 27 '22 at 07:44