I am currently learning my very first computer language and have chosen to go the python route. Very Excited! However, I have come across an error just over my head while trying to install and import pyperclip.
After successfully installing pyperclip into the terminal, I get...
Requirement already satisfied: pyperclip in ./anaconda/lib/python3.5/site-packages
However, when I go to IDLE and import pyperclip, I get...
ImportError: No module named 'pyperclip'
Do I have to install pyperclip a different way? It seems that the conflict between pip and conda is just a little more complicated than my current level of experience.
Tried...
sudo pip3 install pyperclip
sudo conda install pyperclip
sudo easy_install pyperclip
sudo pip3 easy_install pyperclip
Before asking this question, I have searched stackoverflow and anaconda for a good minute trying to sort this out. Thanks in advance for your help :)