python and pip install (pygame)

Question:

I am trying to install python from python.org and I also downloaded pip. To check that it downloaded properly, I booted up terminal to see if it could find the command. I did python3 -V and pip3 -V (which came up with the correct versions) which loaded fine but then tried ‘pip install pygame’ to download pygame as I am trying to make a chess game through python and it said that the command pip wasn’t found. I am trying to follow a YouTube tutorial to download PIP and python and in the video ‘pip install pygame’ worked for him and it did not for me. How do I get terminal to recognise pip. I am coding with pycharm.

Asked By: Rapha

||

Answers:

Use pip3 instead of pip can solve it. Your shell cannot find pip, so can you make sure where the pip executable file? If you can, please add it into your $PATH.

Answered By: XXiaoA
Categories: questions Tags: , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.