You may also want to look into compiling your python program into a single standalone executable. There are tools available to do that for you, that would make it easier again to run your game. Just an idea for next time
Viewing post in Rolling Labyrinth jam comments
I tried to use pyinstaller and I did generate an .exe file. Unfortunately, the text font didn't package. I thought the font was a pygame parameter as I only call it in
pygame.font.Font('freesansbold.ttf', size)
I didn't install a font and the font isn't in the directory, pygame seems to run fine without it. For some reason the .exe file is looking for it on my computer and I don't know how to fix it.