I'm about to finish a program which uses Pygame, which means you would need to install Python and Pygame in order to run the game. How can I include Python and Pygame in the program itself, or is there an easy way to make an installer for the game?
相关问题
- How to include FFI in OS X?
- MultiThreading with pygame, program crashing
- Pygame for Python 3.2 on mac - import error
- Pygame Distribution - Runtime Error
- Pygame not finding image folder when in subdirecto
相关文章
- How to save captured image to disk, using Pygame
- Identify which file has included some particular h
- String concatenation for include path
- Is possible to split PHP configuration file php.in
- What should I #include to use 'htonl'?
- shielding #include within namespace { } block?
- Python pygame writing text in sprite [closed]
- Generating a Voronoi Diagram around 2D Polygons
py2exe
seems to be a popular answer, and I would suggest looking into it as well. I would also suggest tryingpyinstaller
. The setup is a bit more involved, but the tutorials are great.Like PygameNerd said, I would suggest looking into py2exe. I wrote a game for a game jam and wanted to distribute it to people in my dorm. I used py2exe to load it up and distribute it pretty effortlessly (especially using Pygame).
Check out the py2exe website as well as this link on working with various modules in your package. I had dependencies with wxPython and used the latter guide to much success.