Reputation: 123
Whenever I run the program, I get this error message.
ModuleNotFoundError: No module named 'pynput'
If I check the pip3 list I can see pynput.
Please let me know what I am doing wrong.
Thank you.
Upvotes: 0
Views: 121
Reputation: 915
It seems that your pip3
installed pynput
to a python installation that you are not using. For example, your pip3
might have installed pynput
to python3
while your python
refers to python 2.7.
Upvotes: 1