I have Anaconda installed on my mac. And it has messed with my pygame module.
I tried following this tutorial and replacing pip3 install pygame
with conda install pygame
. I have tried conda install pip
and then pip install pygame
yet i get the following error:
Collecting pygame
Could not find any downloads that satisfy the requirement pygame
Some externally hosted files were ignored as access to them may be unreliable (use --allow-external pygame to allow).
No distributions at all found for pygame
(ideas i got from this thread)
Using the "pip install pygame" worked before i did the "conda install pip" however my default python is now the anaconda one and no longer accesses pygame. Using which pip
gives /Users/jensdonlin/anaconda/bin/pip
Does anyone have some suggestions that would allow anaconda's version of python3 to access pygame?
Perhaps the answer involves use --allow-external pygame to allow
but im not really sure how to use that.
The problem here is that the pygame developers have not uploaded pygame to PyPI. So to install it, you will have to download it and pip install the downloaded source, as described in the tutorial you linked. You can do this within the Anaconda Python. Note that in the Anaconda Python, even if it is Python 3, pip is just called
pip
, notpip3
.After 2 days of messing around with macports and homebrew with no joy, the instructions here worked for me using Anaconda Python 2.7.10 on a mac. Echoing them here in case the linked site ever disappears!
First open up terminal and enter these two lines:
If you don't have binstar installed type:
At this point it might tell you that The 'binstar' conda package has been renamed to 'anaconda-client' and that you have to type this instead:
Just do whatever it tells you to. Then finally, type:
and hopefully you're done!
i've tried many permutations of pip. the problem is i wasn't specifying the file path i was trying
pip install pygame
. I have now successfully installed pygame by following the tutorial I gave above and using:pip install /Users/YOURNAME/Downloads/pygame