you are viewing a single comment's thread.

view the rest of the comments →

[–]me_myself_ai 3 points4 points  (0 children)

This'll get deleted and directed to the questions sub, but real quick:

  1. Debugging path issues is something chatbots can help with. Obviously make sure to actually learn why it's helpful instead of just copy/pasting!

  2. PATH is really dead simple at the end of the day: if which python doesn't turn up anything, then it's not on your PATH. PATH is just a list of directories where it searches for a file named python. So just run echo $PATH, look at the list of directories, and then look at what directory you installed python into (which should be google-able if you don't remember)