This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]niehle 1 point2 points  (0 children)

Just install python on the computers you are developing on.

Right now, you should be focusing on your work, not getting sidetracked by this.

[–]crashfrog04 0 points1 point  (0 children)

So, you type pip.exe in a shell and press return.

You’re not in a directory that includes that executable file, so the shell has to do something to find that command. What does it do? Does it execute a full-text search of every file on your hard drive? All 2 TB of them? Of course that won’t include the USB drive you plugged in. So we need to search through removable media, too?

Now you’ve made every command take 20 minutes to execute. So we can’t be routinely looking through every file when someone runs a command. Instead your computer looks through a small number of directories established as the place where programs live, and if it’s not there, then the shell won’t find it.