Apologies if this has been answered; I am too green to know if someone had my issue. I am going through Automate the Boring Stuff With Python, and am trying to import pyperclip for ch. 6. Below is from the command prompt.
Microsoft Windows [Version 10.0.17134.1246] (c) 2018 Microsoft Corporation. All rights reserved.
C:\Users\anthony.suarez>py -m pip install pyperclip Requirement already satisfied: pyperclip in c:\users\anthony.suarez\appdata\local\programs\python\python39\lib\site-packages (1.8.1)
C:\Users\anthony.suarez>py Python 3.9.1 (tags/v3.9.1:1e5d33e, Dec 7 2020, 17:08:21) [MSC v.1927 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information.
In Mu, importing pyperclip gives me:
Jupyter QtConsole 4.3.1 Python 3.6.3 (v3.6.3:2c5fed8, Oct 3 2017, 18:11:49) [MSC v.1900 64 bit (AMD64)] Type 'copyright', 'credits' or 'license' for more information IPython 6.2.1 -- An enhanced Interactive Python. Type '?' for help.
import pyperclip
ModuleNotFoundError Traceback (most recent call last) in () ----> 1 import pyperclip
ModuleNotFoundError: No module named 'pyperclip'
I see the different versions of Python, but not sure if that is the issue or how to resolve it.
Thanks in advance!