» pip install pyperclip
Videos
Hello everyone. I have python 3.10.6 and windows 8.1 so based on what I've found on the internet I'm supposed to have pip. I am going through the lessons from "Automate the Boring Stuff with Python" and I have to get Pyperclip but I just don't understand how. I would be very grateful if someone helped me please.
open command prompt type: pip install pyperclip
if this doesn't work then do this use cd Python35/Scripts to get to the scripts folder This is the folder where pip is located.
Now type: pip install pyperclip
This will download and install pyperclip
now type: pip freeze
And pyperclip should be listed
If you want to test in python shell remember to close the shell(if open) and open new one because it needs to load the new package.
type in python shell: import pyperclip
it should accept it and now you can pyperclip.copy() and pyperclip.paste()
Good luck!
sudo pip3 install pyperclip
did the trick for me
» pip install pyperclip3