0

I am trying to import the thing in python that will enable me to copy and past things. It seems to have a problem. I later searched my entire C drive for pyperclip and it seems to be not have it at all. How can I go about fixing this? Or am I not looking in the right area? Here is the error:

import pyperclip

Traceback (most recent call last):

File "", line 1, in

import pyperclip

ModuleNotFoundError: No module named 'pyperclip'

BTW I'm on windows 10

mrvxjhn
  • 1
  • 2

2 Answers2

0

You seems a new learner for Python. You can try to install that package via pip command. For other problem like how to use pip or which user to run pip, just go to search and solve it by yourself.

Geno Chen
  • 4,916
  • 6
  • 21
  • 39
0

So yes you're right. You need to open up cmd prompt. use the cd to change the directory to the one inside Python36\Scripts. Then run the command pip install pyperclip

mrvxjhn
  • 1
  • 2