I'm running through some exercises in a new book on Python ("Automate the Boring Stuff with Python....") and it requires a module, pyperclip, which I dutifully imported using
pip3.4 import --user pyperclip #I am using python 3.4
The import appeared to work, but when I attempted to import pyperclip, I got the following:
import pyperclip Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/adavidow/.local/lib/python3.4/site-packages/pyperclip/init.py", line 203, in <module> raise Exception('Pyperclip requires the xclip or xsel application, or the gtk or PyQt4 module.') Exception: Pyperclip requires the xclip or xsel application, or the gtk or PyQt4 module.
Help?