0
 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

Manoj
  • 2,059
  • 3
  • 12
  • 24
Anonymous
  • 1
  • 1

1 Answers1

0

Try running the command conda install arcade from command prompt then run the program. If it works ok else run the command pip install arcade.

Jaysmito Mukherjee
  • 1,467
  • 2
  • 10
  • 29