import arcade
class MyGamewindow(arcade.Window):
def __init__(self, width,height,title):
super().__init__(width,height,title)
self.set_location(400,200)
MyGamewindow(800, 400, 'xy')
arcade.run()
This is my error
File "C:\ProgramData\Anaconda3\lib\ctypes\__init__.py", line 364, in __init__
self._handle = _dlopen(self._name, mode)
OSError: [WinError 126] The specified module could not be found
I checked the files and there seems to be no problem Please help regarding this, not familiar with advanced fixes or stuff provided in other solutions