xralf
xralf

Reputation: 3652

Could not find the version that satisfies the requirement win32print

I'm trying to install win32print on Windows 10 as follows:

pip3.exe install win32print

ERROR: Could not find the version that satisfies the requirement win32print (from versions: none)
ERROR: No matching distribution found for win32print

How can I fix it and install win32print on Windows 10?

Upvotes: 2

Views: 6520

Answers (2)

rak3sh
rak3sh

Reputation: 134

Install pywin32 instead:

pip install pywin32

and then use win32print like:

from win32 import win32print

Upvotes: 6

AKX
AKX

Reputation: 169032

win32print is apparently contained within the pywin32 package.

Try installing it; pip3 install pywin32.

Upvotes: 1

Related Questions