0

I am trying to install pyperclip for the python course "automate the boring stuff with python" on my Mac.

When I type pip install pyperclip to console I get the error :

ImportError: No module named typing.
Anton Krug
  • 1,555
  • 2
  • 19
  • 32

1 Answers1

0

pip install typing should solve your problem.
You can also downgrade your pip version. python -m pip install --upgrade "pip < VERSION_NUM"

Typing Module
pip solution

booyaakaashaa
  • 105
  • 12