Well it looks like I was missing pygame, but I got that installed. However, when I ran it it gave me an error (included below). Thanks for helping me run this. :D
File "game.py", line 5, in <module>
from too_many_cooks import run_game
File "/home/jeepracer98/Downloads/Too-Many-Cooks-master/too_many_cooks/__init__.py", line 5, in <module>
from too_many_cooks.kitchen import Kitchen
File "/home/jeepracer98/Downloads/Too-Many-Cooks-master/too_many_cooks/kitchen.py", line 3, in <module>
from too_many_cooks.appliance import Stove, Storage, Fryer, ChoppingBlock, Grill, Oven, CounterTop
File "/home/jeepracer98/Downloads/Too-Many-Cooks-master/too_many_cooks/appliance.py", line 5, in <module>
from too_many_cooks import ingredient
File "/home/jeepracer98/Downloads/Too-Many-Cooks-master/too_many_cooks/ingredient.py", line 21, in <module>
beef_patty = Ingredient('Beef Patty', os.path.join('sprites', 'beef_patty.png'))
File "/home/jeepracer98/Downloads/Too-Many-Cooks-master/too_many_cooks/ingredient.py", line 9, in __init__
super().__init__()
TypeError: super() takes at least 1 argument (0 given)