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.
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.
pip install typing
should solve your problem.
You can also downgrade your pip
version.
python -m pip install --upgrade "pip < VERSION_NUM"