-1

recently I am studying making using python. I even made a small game. I wanted my friend to play it. But he did not have python so he had to download python and other related modules to run the game. So I wanted to ask is there a way to convert the whole game in a stand-alone application or make an exe file of it. Thanks in advance.

1 Answers1

0

You can do this by making binary file of your .py file using pyinstaller.

https://pyinstaller.readthedocs.io/en/stable/

pip install pyinstaller pyinstaller -F file.py

Ankit Agrawal
  • 596
  • 5
  • 12