Skip to content Skip to sidebar Skip to footer

Unable To Install 64-bit Pygame On Python 3.4

I have 64-bit python 3.4 installed, which comes with pip. I wanted to install pygame, and I know that the 32 bit version that they have on their site wouldn't work with my version

Solution 1:

The most likely reason you failed to install the .whl package is that you typed

pip install pygame

at the command prompt, instead of switching to the directory where you stored your renamed pygame.whl and running

pip install pygame.whl

pip requires that you give the full name of the file being installed.

The error message you got indicates that you ran the first command, and pip was looking in PyPI for pygame (which isn't there). The --allow-external command would have allowed you to specify a remote location where a source file or .whl file could be found.

In the future, I'd recommand not renaming the files downloaded from the (quite excellent) site you linked to, so that when you try to install them you're sure you're running the right command. Remember, you can always use Tab to complete file names on the command line.

Post a Comment for "Unable To Install 64-bit Pygame On Python 3.4"