问题
I'm new to python and i'm trying to install win32clipboard to be able to use this code:
import win32clipboard
win32clipboard.OpenClipboard()
win32clipboard.SetClipboardText('testing 123')
win32clipboard.CloseClipboard()
# get clipboard data
win32clipboard.OpenClipboard()
data = win32clipboard.GetClipboardData()
win32clipboard.CloseClipboard()
print data
raw_input()
How do i exactly install the necessary module to be able to do so? I'm using python version 2.72.
回答1:
This module is part of pywin32 module.
To install:
- Go to http://sourceforge.net/projects/pywin32/files/pywin32/
- Choose the latest build, e.g.: http://sourceforge.net/projects/pywin32/files/pywin32/Build%20219/
- Download the installer for your system, e.g.:
pywin32-219.win-amd64-py2.7.exe
- Run the installer.
- Use the Python you've installed it for to run your
win32clipboard
script.
来源:https://stackoverflow.com/questions/15310121/trying-to-install-module-win32clipboard