I tried running it with Python, installed the missing packages and got the following error:
Traceback (most recent call last):
File "main.py", line 101, in <module>
level = Level(screen)
File "level.py", line 24, in __init__
self.setup_level()
File "level.py", line 39, in setup_level
tmx_data = pytmx.load_pygame("map/" + list_level_map_paths[self.level_number])
File "...\pytmx\util_pygame.py", line 183, in load_pygame
return pytmx.TiledMap(filename, *args, **kwargs)
File "...\pytmx\pytmx.py", line 549, in __init__
self.parse_xml(ElementTree.parse(self.filename).getroot())
File "...\pytmx\pytmx.py", line 633, in parse_xml
self.reload_images()
File "...\pytmx\pytmx.py", line 655, in reload_images
loader = self.image_loader(path, colorkey, tileset=ts)
File "...\pytmx\util_pygame.py", line 131, in pygame_image_loader
image = pygame.image.load(filename)
FileNotFoundError: No such file or directory.