1
votes

I have been following instructions on how to install pygame on a mac. Here is the link to the website where the instructions are: http://dudeslife.com/blog/2014/programming/installing-python-3-3-3-pygame-on-os-x-mavericks/

I am on the last step and when I put "/usr/local/Cellar/python3/3.3.3/bin/pip3 install /Users/BEASTMACHINEjr/Downloads/pygame" into terminal, this error occurs:

"/Users/BEASTMACHIENEjr/Downloads/pygame -bash: /usr/local/Cellar/python3/3.3.3/bin/pip3: No such file or directory"

Does anyone know what I am doing wrong?

Any help would be greatly appreciated!

EDIT: Also, I am new to osx, if anyone has an answer please simplify it. ;)

1

1 Answers

0
votes

It looks like something is not where you say it is.

Try the command "/usr/local/Cellar/python3/3.4.1/bin/pip3 install Users/BEASTMACHINEjr/Downloads/pygame"

Explanation: Pip3 is the command that will be doing the installation and /usr/local/Cellar/python3/3.3.3/bin/ is the location of where you are saying it is at. If you downloaded python3 recently then it will be version 3.4.1 so the path you should use is /usr/local/Cellar/python3/3.4.1/bin/pip3. The website says to use the 3.3.3 because that was the newest version when they made the page.