When trying to import pygame I get the following error:
File "C:\Users\Jesse\.spyder-py3\Aliens\pygame\__init__.py", line 120, in <module>
from pygame.base import *
ImportError: DLL load failed: The specified module could not be found.
I don't know why it cannot find pygame.base. When I installed pygame I took the folder and pasted it right in the same directory my python program is running in. There is a base.pyd file in the pygame folder, so why is it giving me an import error?
Not sure if this is related: I installed pygame using pygame-1.9.6-cp36-cp36m-win_amd64.whl
. After doing some digging in my computer, it seems like I have two versions of python installed (3.6.5 and 3.7.3).