I've been trying to learn python using Automate the Boring Stuff with Python (has not been as easy as I would have liked). In chapter 6, the author is using a module he created for a project. I seemingly installed the module successfully, but I'm getting the following error when I run his sample code:
import pyperclip
pyperclip.copy('Hello, world!')
pyperclip.paste()
Traceback (most recent call last):
File "C:\Users\16463\OneDrive\Desktop\test.py", line 1, in <module>
import pyperclip
ModuleNotFoundError: No module named 'pyperclip'
I'm using Thonny IDE.