Reputation: 81
I'm following a course on Udemy: Automate the Boring Stuff using Python. For one of the courses the guide asks me to install Pyperclip. Now I've tried this, but cmd keeps returning: " 'pip' is not recognized as an internal or external command, operable or batch file
The path I use is "C:\Users\myname\AppData\Local\Programs\Python\Python36-32\Scripts\pip.exe", I've tried it without the pip.exe, but then it also returns an error.
Upvotes: 0
Views: 183
Reputation: 304
Python3 has pip embedded, so you can use python3 directly to install it:
python3 -m pip install <package>
Upvotes: 0
Reputation: 81
Fixed it, I tried out "C:\Users\Scott\AppData\Local\Programs\Python\Python36-32\Scripts\pip.exe install pyperclip", and it worked.
Upvotes: 0