I'm new to python, so apologies in advance if I’m being stupid.
I'm having trouble importing the pyperclip module to my script. The following error pops up when i type in import pyperclip
.
runfile('C:/Users/Pruthvi/Practice.py', wdir='C:/Users/Pruthvi')
Traceback (most recent call last):
File "C:\Users\Pruthvi\Practice.py", line 1, in <module>
import pyperclip
ModuleNotFoundError: No module named 'pyperclip'
Having followed the steps in automate the boring stuff with python, I’ve successfully installed the module using pip install pyperclip
and it was saved to the c:\users\pruthvi\appdata\local\programs\python\python38-32\lib\site-packages directory by default.
Is this the right folder to save third-party modules and to import them after? Or is there some other reason why I can't import it?
Many thanks, Pruthvi