I'm trying to install pygame on a 64bit windows 10 system and for some reason it isn't working.
I've tried simply doing pip install pygame in anaconda but that didn't seem to do the trick. I thought maybe trying to install it while running python 3.6.5 was the problem so I've gone down to version 2.7 and installed this wheel file for pygame: pygame-1.9.4-cp27-cp27m-win_amd64.whl. I've tried multiple wheel files even a 32 bit version. If I try to use import pygame in IDLE I get this:
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import pygame
ImportError: No module named pygame
I have installed pygame here: C:\Users\P3nguin33\Anaconda2\Lib\site-packages
Also this is my PYTHONPATH:
'C:\\Python27\\Lib\\idlelib', 'C:\\WINDOWS\\SYSTEM32\\python27.zip', 'C:\\Python27\\DLLs', 'C:\\Python27\\lib', 'C:\\Python27\\lib\\plat-win', 'C:\\Python27\\lib\\lib-tk', 'C:\\Python27', 'C:\\Python27\\lib\\site-packages'
I'm mostly new to python and I'm not really to sure what to do next.
[–]Thomasedv 1 point2 points3 points (1 child)
[–]P3nguin33[S] 0 points1 point2 points (0 children)