Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 248
Omri Avatar asked Nov 02 '18 07:11

Omri


People also ask

How do I install Python modules?

The best and recommended way to install Python modules is to use pip, the Python package manager. Otherwise: Download get-pip.py from https://bootstrap.pypa.io/get-pip.py. Run python get-pip.py.

What is win32clipboard?

The win32-clipboard library provides an interface for interacting with the Windows clipboard. It supports the ability to read and write text, images, files, and Windows metafiles.

Could not find a version that satisfies the requirement pywin32 from versions none?

To fix the error, remove both pywin32 and pywinpty from lines 72 and 73 of your requirements. txt file. Make sure to upload any datasets (including California_Fire_Incidents. csv ) used in your app to the GitHub repo.


1 Answers

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

like image 146
Cool School Avatar answered Oct 19 '22 23:10

Cool School