简体   繁体   中英

Installing pygame module in anaconda mac

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.

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:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install sdl sdl_ttf sdl_image sdl_mixer portmidi

If you don't have binstar installed type:

conda install binstar

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:

conda install anaconda-client

Just do whatever it tells you to. Then finally, type:

conda install -c https://conda.binstar.org/quasiben pygame

and hopefully you're done!

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 , not pip3 .

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM