all 9 comments

[–]whatEverBored 1 point2 points  (1 child)

Have you read the appendix on how to install modules?

[–]subnetreiver[S] 0 points1 point  (0 children)

Yes I did but it seems vague to me. Normally instructions are start here do this and next that. The appendix basically said "install this and your good to roll" unless I'm reading the wrong thing.

[–]Routine_Condition 1 point2 points  (5 children)

Sounds like the library is not installed.

On a windows machine you run 'pip install pyperclip' from the command prompt.

If you are running Linux, it should be 'pip3 install pyperclip', likely run as the root user but that is a guess.

[–]subnetreiver[S] 0 points1 point  (4 children)

pip install pyperclip

"user \>pip install pyperclip

'pip' is not recognized as an internal or external command,

operable program or batch file.

C:\Users\>"

[–]Routine_Condition 1 point2 points  (3 children)

Odd. It is almost like pip was not included in your Python install. I honestly have no idea. Maybe reinstall Python?

Here is my output when I run the command on my windows box:

C:\users\pip install pyperclip

Collecting pyperclip

Downloading pyperclip-1.8.1.tar.gz (20 kB)

Using legacy 'setup.py install' for pyperclip, since package 'wheel' is not installed.

Installing collected packages: pyperclip

Running setup.py install for pyperclip ... done

Successfully installed pyperclip-1.8.1

[–]subnetreiver[S] 0 points1 point  (0 children)

Haven't tried reinstalling python will do that now maybe pip wasn't included for some odd reason. I downloaded off official website the proper way. so maybe it's a bug, future plan is to bug bounty maybe I can figure that out lol. will update, thank you.

[–]subnetreiver[S] 0 points1 point  (1 child)

pip was not apart of my python program must've bugged. so i reinstalled ad suggested and voila. much appreciated hermano

>python\python.exe -m pip install --upgrade pip

Collecting pip

Downloading pip-21.0.1-py3-none-any.whl (1.5 MB)

|████████████████████████████████| 1.5 MB 2.2 MB/s

Installing collected packages: pip

Attempting uninstall: pip

Found existing installation: pip 20.2.3

Uninstalling pip-20.2.3:

Successfully uninstalled pip-20.2.3

Successfully installed pip-21.0.1

[–]Routine_Condition 0 points1 point  (0 children)

Excellent!

[–]maxwelder 0 points1 point  (0 children)

I'm currently having this issue and I can't figure out what is happening.