Python Arcade库不会绘制精灵(空白窗口)

时间:2019-11-01 22:57:24

标签: python python-3.x graphics

我正在尝试使用街机库绘制一个简单的.png文件(一辆汽车)。但是,按照教程进行操作后,我无法在屏幕上显示汽车的图像。我在Windows 10 x64和python 3.6(anaconda虚拟环境)上使用Pycharm Community 2019.2。

我什至从http://arcade.academy/examples/platform_tutorial/index.html下载了示例,并解压缩了目录,保留了文件/文件夹的结构。当我运行提供的文件“ 02_draw_sprites”时,结果是一个空白的窗口,没有任何精灵或任何东西。

文件“ 02_draw_sprites”可以在这里看到: http://arcade.academy/examples/platform_tutorial/index.html#step-2-add-sprites

程序执行期间没有错误或警告。

1 个答案:

答案 0 :(得分:0)

使用python 3.7.5安装新的虚拟环境(conda create -n myvenv37 python = 3.7),然后pip install arcade解决了该问题。