PyWeek - Dragon's Bakery - feedback

Fun 1 Prod 2 Inno 2

DR0ID

Well, after the trouble of installing arcade 2.7 (why use a dev version???) I was disappointed in finding that it was an unfinished game. Could move and shoot, but nothing else happened.

Did not work

Jeb

no module arcade.background was found :(

Did not work

MrTanoshii

ModuleNotFoundError: No module named 'arcade.background'
:=

Did not work

Pykemon010

I couldn't make it run

Did not work

aleksan149

dont work

Did not work

fireclaw

Sadly arcade 2.7.0 is not available via pip (and hence can't be installed with the requirements.txt) and the available release 2.6.5 didn't seem to work.

Did not work

Doger

not working for me it says no module named arcade also tried to get it to work in the terminal but couldn't get it to work there either

Fun 1 Prod 4 Inno 1

larry

The game appears to be unfinished. You have a Metal Gear Chibi purplish guy, chased by a teal Gizmoduck robot guy. He catches up to you unless he doesn't. You're in a building, on Mars I reckon. You can only go in and out through the doors, the robot can go wherever it likes. I couldn't find a "shoot" button, despite there being a "src/weapons/bullets.py", so I don't know, maybe I missed it--it wasn't in (nearly nonexistent) documentation. I gather the author considered this game unfinished and turned it in anyway.

Did not work

thp

Trying to install requirements.txt with pip results in:

ERROR: Could not find a version that satisfies the requirement arcade>=2.7.0.

I tried changing it to 2.6.15, but that fails with:

Traceback (most recent call last):
File "C:\Users\thp\Desktop\34\merc\PyWeek34_MERC_v0.6\PyWeek34-TheRedPlanet\game.py", line 1, in <module>
from src import launch
File "C:\Users\thp\Desktop\34\merc\PyWeek34_MERC_v0.6\PyWeek34-TheRedPlanet\src\__init__.py", line 3, in <module>
from src.engine import _Engine
File "C:\Users\thp\Desktop\34\merc\PyWeek34_MERC_v0.6\PyWeek34-TheRedPlanet\src\engine.py", line 8, in <module>
from src.views.mission import MissionView
File "C:\Users\thp\Desktop\34\merc\PyWeek34_MERC_v0.6\PyWeek34-TheRedPlanet\src\views\mission.py", line 7, in <module>
from arcade.background import Background
ModuleNotFoundError: No module named 'arcade.background'

Did not work

speedlimit35

I have the requirements installed and I used Python3

Traceback (most recent call last):
File "game.py", line 1, in <module>
from src import launch
File "/PyWeek34-TheRedPlanet/src/__init__.py", line 3, in <module>
from src.engine import _Engine
File "/PyWeek34-TheRedPlanet/src/engine.py", line 7, in <module>
from src.player import PLAYER
File "/PyWeek34-TheRedPlanet/src/player/__init__.py", line 3, in <module>
PLAYER: PlayerManager | None = PlayerManager()
TypeError: unsupported operand type(s) for |: 'type' and 'NoneType'