I have installed pyperclip, and it works when I use IDLE
>>> import pyperclip
>>> pyperclip.copy('hello')
>>> pyperclip.paste()
'hello'
>>>
but when I use my batch file it says that there is no module named pyperclip
Traceback (most recent call last):
File "C:\Python36-32\Scripts\pw.py", line 7, in <module>
import sys, pyperclip
ModuleNotFoundError: No module named 'pyperclip'
Press any key to continue . . .
this is my batch file:
@C:\Python36-32\python.exe C:\Python36-32\Scripts\pw.py %*
@pause