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()

这是我的错误

  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

我检查了文件,似乎没有问题请对此提供帮助,不熟悉其他解决方案中提供的高级修复或内容

4

1 回答 1

0

尝试conda install arcade从命令提示符运行命令,然后运行程序。如果它工作正常,则运行该命令pip install arcade

于 2021-01-05T05:51:37.200 回答