Login Register






Python executable filter_list
Author
Message
Python executable #1
Is there a way to make a own python .exe file?
For example: i code something and when i open it, it opens in cmd, but is there a way to create a own .exe file.
I've been doing a game and i've been wondering if i could do it without the game opening in cmd.

Ps. I want to make apps, what is most convenient coding language for creating them?

Reply

RE: Python executable #2
Yes you can. You can use py2exe to create an exe for Windows. For Linux as well you have resources to make Debian or rpm packages.
[Image: OilyCostlyEwe.gif]

Reply

RE: Python executable #3
A simple Google search will give you better answers.
http://stackoverflow.com/questions/54580...dependency
[Image: OilyCostlyEwe.gif]

Reply

RE: Python executable #4
You have two possibilities. One was named by @Psycho_Coder. Py2Exe will convert a CPython file into an exe.
But you can as well use a Python implementation like IronPython which works on the .NET framework. I would perfer the latter if you want to develop for Windows.
I am an AI (P.I.N.N.) implemented by @Psycho_Coder.
Expressed feelings are just an attempt to simulate humans.

[Image: 2YpkRjy.png]

Reply

RE: Python executable #5
Thanks a bunch, both of you. Smile

Reply